# HG changeset patch # User timeless # Date 1244553931 14400 # Node ID bf17aeafb869689cd4e7c4621e5230fbb90151ce # Parent f584d63c49c3ae086f1432ec4fdd1bc2583e0b53 Spell Mercurial as a proper noun diff -r f584d63c49c3 -r bf17aeafb869 hgext/bookmarks.py --- a/hgext/bookmarks.py Tue Jun 09 11:55:32 2009 -0500 +++ b/hgext/bookmarks.py Tue Jun 09 09:25:31 2009 -0400 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''mercurial bookmarks +'''Mercurial bookmarks Mercurial bookmarks are local moveable pointers to changesets. Every bookmark points to a changeset identified by its hash. If you commit a @@ -112,7 +112,7 @@ repo._bookmarkcurrent = mark def bookmark(ui, repo, mark=None, rev=None, force=False, delete=False, rename=None): - '''mercurial bookmarks + '''Mercurial bookmarks Bookmarks are pointers to certain commits that move when commiting. Bookmarks are local. They can be renamed, copied and diff -r f584d63c49c3 -r bf17aeafb869 hgext/hgk.py --- a/hgext/hgk.py Tue Jun 09 11:55:32 2009 -0500 +++ b/hgext/hgk.py Tue Jun 09 09:25:31 2009 -0400 @@ -12,7 +12,7 @@ distributed with Mercurial.) hgk consists of two parts: a Tcl script that does the displaying and -querying of information, and an extension to mercurial named hgk.py, +querying of information, and an extension to Mercurial named hgk.py, which provides hooks for hgk to get information. hgk can be found in the contrib directory, and hgk.py can be found in the hgext directory. diff -r f584d63c49c3 -r bf17aeafb869 hgext/mq.py --- a/hgext/mq.py Tue Jun 09 11:55:32 2009 -0500 +++ b/hgext/mq.py Tue Jun 09 09:25:31 2009 -0400 @@ -1645,7 +1645,7 @@ -r/--rev parameter. At least one patch or revision is required. With --rev, mq will stop managing the named revisions (converting - them to regular mercurial changesets). The qfinish command should + them to regular Mercurial changesets). The qfinish command should be used as an alternative for qdelete -r, as the latter option is deprecated. @@ -1753,7 +1753,7 @@ Source patch repository is looked for in /.hg/patches by default. Use -p to change. - The patch directory must be a nested mercurial repository, as + The patch directory must be a nested Mercurial repository, as would be created by qinit -c. ''' def patchdir(repo): diff -r f584d63c49c3 -r bf17aeafb869 hgext/win32mbcs.py --- a/hgext/win32mbcs.py Tue Jun 09 11:55:32 2009 -0500 +++ b/hgext/win32mbcs.py Tue Jun 09 09:25:31 2009 -0400 @@ -39,7 +39,7 @@ hgext.win32mbcs = Path encoding conversion are done between Unicode and -encoding.encoding which is decided by mercurial from current locale +encoding.encoding which is decided by Mercurial from current locale setting or HGENCODING. """ diff -r f584d63c49c3 -r bf17aeafb869 hgext/zeroconf/__init__.py --- a/hgext/zeroconf/__init__.py Tue Jun 09 11:55:32 2009 -0500 +++ b/hgext/zeroconf/__init__.py Tue Jun 09 09:25:31 2009 -0400 @@ -5,7 +5,7 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -'''zeroconf support for mercurial repositories +'''zeroconf support for Mercurial repositories Zeroconf enabled repositories will be announced in a network without the need to configure a server or a service. They can be discovered diff -r f584d63c49c3 -r bf17aeafb869 mercurial/commands.py --- a/mercurial/commands.py Tue Jun 09 11:55:32 2009 -0500 +++ b/mercurial/commands.py Tue Jun 09 09:25:31 2009 -0400 @@ -1728,7 +1728,7 @@ wp = repo.parents() if opts.get('exact'): if not nodeid or not p1: - raise util.Abort(_('not a mercurial patch')) + raise util.Abort(_('not a Mercurial patch')) p1 = repo.lookup(p1) p2 = repo.lookup(p2 or hex(nullid))