# HG changeset patch # User Mads Kiilerich # Date 2013-04-14 23:37:23 # Node ID c3b920980f221f7dcfd829b7b4af12d3f779aa1e # Parent 6b618aa08b6eb6394b934d0ea7829f1b24f4b9f3 spelling: fix typos and spelling errors diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -3044,7 +3044,7 @@ def strip(ui, repo, *revs, **opts): 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 diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -1130,7 +1130,7 @@ class workingctx(changectx): 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 diff --git a/mercurial/help/config.txt b/mercurial/help/config.txt --- a/mercurial/help/config.txt +++ b/mercurial/help/config.txt @@ -1494,7 +1494,7 @@ The value of each entry defines the subs 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.