changeset 18958:c3b920980f22

spelling: fix typos and spelling errors
author Mads Kiilerich <madski@unity3d.com>
date Mon, 15 Apr 2013 01:37:23 +0200
parents 6b618aa08b6e
children 2f6418d8a4c9
files hgext/mq.py mercurial/context.py mercurial/help/config.txt
diffstat 3 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/mq.py	Thu Apr 11 14:54:18 2013 +0200
+++ b/hgext/mq.py	Mon Apr 15 01:37:23 2013 +0200
@@ -3044,7 +3044,7 @@
             descendantrevs = repo.revs("%s::." % uctx.rev())
             changedfiles = []
             for rev in descendantrevs:
-                # blindy reset the files, regardless of what actually changed
+                # blindly reset the files, regardless of what actually changed
                 changedfiles.extend(repo[rev].files())
 
             # reset files that only changed in the dirstate too
--- a/mercurial/context.py	Thu Apr 11 14:54:18 2013 +0200
+++ b/mercurial/context.py	Mon Apr 15 01:37:23 2013 +0200
@@ -1130,7 +1130,7 @@
                 wlock.release()
 
     def markcommitted(self, node):
-        """Perform post-commit cleanup necessary after commiting this workingctx
+        """Perform post-commit cleanup necessary after committing this ctx
 
         Specifically, this updates backing stores this working context
         wraps to reflect the fact that the changes reflected by this
--- a/mercurial/help/config.txt	Thu Apr 11 14:54:18 2013 +0200
+++ b/mercurial/help/config.txt	Mon Apr 15 01:37:23 2013 +0200
@@ -1494,7 +1494,7 @@
 The websub expressions follow the old interhg extension syntax,
 which in turn imitates the Unix sed replacement syntax::
 
-    pattername = s/SEARCH_REGEX/REPLACE_EXPRESSION/[i]
+    patternname = s/SEARCH_REGEX/REPLACE_EXPRESSION/[i]
 
 You can use any separator other than "/". The final "i" is optional
 and indicates that the search must be case insensitive.