diff options
author | hut <hut@lavabit.com> | 2013-06-16 18:15:23 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-06-16 18:22:26 +0200 |
commit | 8eef932b21411c9abf1c80351d75b2adde875e13 (patch) | |
tree | 37bfb726bd2c4761e3e31eb82a9a5056159ffa1b | |
parent | d24e6155f612cd905e528934b7de3950e402cf31 (diff) | |
download | ranger-8eef932b21411c9abf1c80351d75b2adde875e13.tar.gz |
commands.py: typos
Thanks to niku for the patch.
-rw-r--r-- | ranger/config/commands.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ranger/config/commands.py b/ranger/config/commands.py index 4d290e7e..00b978b9 100644 --- a/ranger/config/commands.py +++ b/ranger/config/commands.py @@ -42,9 +42,9 @@ # the user pressed 6X, self.quantifier will be 6. # self.arg(n): The n-th argument, or an empty string if it doesn't exist. # self.rest(n): The n-th argument plus everything that followed. For example, -# If the command was "search foo bar a b c", rest(2) will be "bar a b c" -# self.start(n): The n-th argument and anything before it. For example, -# If the command was "search foo bar a b c", rest(2) will be "bar a b c" +# if the command was "search foo bar a b c", rest(2) will be "bar a b c" +# self.start(n): Anything before the n-th argument. For example, if the +# command was "search foo bar a b c", start(2) will be "search foo" # # =================================================================== # And this is a little reference for common ranger functions and objects: @@ -1195,7 +1195,7 @@ class diff(Command): """ :diff - Displays a diff of selected files against last last commited version + Displays a diff of selected files against the last commited version """ def execute(self): from ranger.ext.vcs import VcsError |