about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2013-06-16 18:15:23 +0200
committerhut <hut@lavabit.com>2013-06-16 18:22:26 +0200
commit8eef932b21411c9abf1c80351d75b2adde875e13 (patch)
tree37bfb726bd2c4761e3e31eb82a9a5056159ffa1b
parentd24e6155f612cd905e528934b7de3950e402cf31 (diff)
downloadranger-8eef932b21411c9abf1c80351d75b2adde875e13.tar.gz
commands.py: typos
Thanks to niku for the patch.
-rw-r--r--ranger/config/commands.py8
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
'>146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193