diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2014-09-09 14:57:26 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2014-09-09 14:57:26 -0700 |
commit | 0d19453290043ecf96fe3219d00140146b699cb9 (patch) | |
tree | 9a7f1eb9b8c274c84f389c3e47c8fafe63da3c65 /python/servo/devenv_commands.py | |
parent | 965ba08c75190d2ebce573552ca8ad267c571e62 (diff) | |
download | servo-0d19453290043ecf96fe3219d00140146b699cb9.tar.gz servo-0d19453290043ecf96fe3219d00140146b699cb9.zip |
Fix typo in 'mach cargo --help'
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r-- | python/servo/devenv_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
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()) |