From 0d19453290043ecf96fe3219d00140146b699cb9 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Tue, 9 Sep 2014 14:57:26 -0700 Subject: [PATCH] Fix typo in 'mach cargo --help' --- python/servo/devenv_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index 1c5c8ee24b5..d076330ee4e 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -26,7 +26,7 @@ class MachCommands(CommandBase): category='devenv', allow_all_args=True) @CommandArgument('params', default=None, nargs='...', - help="Command-line arguments to be passed through to Cervo") + help="Command-line arguments to be passed through to Cargo") def run(self, params): return subprocess.call(["cargo"] + params, env=self.build_env())