diff options
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r-- | python/servo/devenv_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index f6532b57097..31bfc8f48bd 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -228,7 +228,7 @@ class MachCommands(CommandBase): with cd(self.context.topdir): return self.call_rustup_run(["cargo", "fetch"], env=self.build_env()) - + @Command('rustfmt', description='Format the Rust code using Cargo fmt', category='devenv') @@ -241,7 +241,7 @@ class MachCommands(CommandBase): with cd(self.context.topdir): return self.call_rustup_run(["cargo", "fmt", "--", directory], env=self.build_env()) - + @Command('ndk-stack', description='Invoke the ndk-stack tool with the expected symbol paths', category='devenv') |