# HG changeset patch # User Bryan O'Sullivan # Date 1347377769 25200 # Node ID 31f32a96e1e3582c703c11b6256a1dd007cd0f23 # Parent 63e45aee46d4838c05112943518772e9347a03b0# Parent dc6364a81e421c8bdb8d68692da62774532637cf Merge spelling fixes diff -r 63e45aee46d4 -r 31f32a96e1e3 contrib/mercurial.el --- a/contrib/mercurial.el Tue Sep 11 00:12:07 2012 +0200 +++ b/contrib/mercurial.el Tue Sep 11 08:36:09 2012 -0700 @@ -461,7 +461,7 @@ (defun hg-complete-repo (string predicate all) "Attempt to complete a repository name. We complete on either symbolic names from Mercurial's config or real -directory names from the file system. We do not penalise URLs." +directory names from the file system. We do not penalize URLs." (or (if all (all-completions string hg-repo-completion-table predicate) (try-completion string hg-repo-completion-table predicate)) diff -r 63e45aee46d4 -r 31f32a96e1e3 contrib/vim/hgcommand.vim --- a/contrib/vim/hgcommand.vim Tue Sep 11 00:12:07 2012 +0200 +++ b/contrib/vim/hgcommand.vim Tue Sep 11 08:36:09 2012 -0700 @@ -27,7 +27,7 @@ " " You still can read the documentation at the end of this file. Locate it by " searching the "hgcommand-contents" string (and set ft=help to have -" appropriate syntaxic coloration). +" appropriate syntactic coloration). " Section: Plugin header {{{1 @@ -752,7 +752,7 @@ " Protect against case and backslash issues in Windows. let autoPattern = '\c' . messageFileName - " Ensure existance of group + " Ensure existence of group augroup HGCommit augroup END diff -r 63e45aee46d4 -r 31f32a96e1e3 contrib/vim/patchreview.vim --- a/contrib/vim/patchreview.vim Tue Sep 11 00:12:07 2012 +0200 +++ b/contrib/vim/patchreview.vim Tue Sep 11 08:36:09 2012 -0700 @@ -17,7 +17,7 @@ " " 0.2.1 - Minor temp directory autodetection logic and cleanup " -" 0.2 - Removed the need for filterdiff by implemeting it in pure vim script +" 0.2 - Removed the need for filterdiff by implementing it in pure vim script " - Added DiffReview command for reverse (changed repository to " pristine state) reviews. " (PatchReview does pristine repository to patch review) diff -r 63e45aee46d4 -r 31f32a96e1e3 doc/hgmanpage.py --- a/doc/hgmanpage.py Tue Sep 11 00:12:07 2012 +0200 +++ b/doc/hgmanpage.py Tue Sep 11 08:36:09 2012 -0700 @@ -158,7 +158,7 @@ """""" words_and_spaces = re.compile(r'\S+| +|\n') - document_start = """Man page generated from reStructeredText.""" + document_start = """Man page generated from reStructuredText.""" def __init__(self, document): nodes.NodeVisitor.__init__(self, document) @@ -900,7 +900,7 @@ # ``.PP`` : Start standard indented paragraph. # ``.LP`` : Start block paragraph, all except the first. # ``.P [type]`` : Start paragraph type. - # NOTE dont use paragraph starts because they reset indentation. + # NOTE don't use paragraph starts because they reset indentation. # ``.sp`` is only vertical space self.ensure_eol() self.body.append('.sp\n') diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/acl.py diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/bugzilla.py --- a/hgext/bugzilla.py Tue Sep 11 00:12:07 2012 +0200 +++ b/hgext/bugzilla.py Tue Sep 11 08:36:09 2012 -0700 @@ -45,7 +45,7 @@ email to the Bugzilla email interface to submit comments to bugs. The From: address in the email is set to the email address of the Mercurial user, so the comment appears to come from the Mercurial user. In the event -that the Mercurial user email is not recognised by Bugzilla as a Bugzilla +that the Mercurial user email is not recognized by Bugzilla as a Bugzilla user, the email associated with the Bugzilla username used to log into Bugzilla is used instead as the source of the comment. Marking bugs fixed works on all supported Bugzilla versions. @@ -53,7 +53,7 @@ Configuration items common to all access modes: bugzilla.version - This access type to use. Values recognised are: + The access type to use. Values recognized are: :``xmlrpc``: Bugzilla XMLRPC interface. :``xmlrpc+email``: Bugzilla XMLRPC and email interfaces. @@ -303,7 +303,7 @@ # Methods to be implemented by access classes. # # 'bugs' is a dict keyed on bug id, where values are a dict holding - # updates to bug state. Recognised dict keys are: + # updates to bug state. Recognized dict keys are: # # 'hours': Value, float containing work hours to be updated. # 'fix': If key present, bug is to be marked fixed. Value ignored. diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/convert/subversion.py diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/convert/transport.py --- a/hgext/convert/transport.py Tue Sep 11 00:12:07 2012 +0200 +++ b/hgext/convert/transport.py Tue Sep 11 08:36:09 2012 -0700 @@ -43,7 +43,7 @@ svn.client.get_ssl_client_cert_pw_file_provider(pool), svn.client.get_ssl_server_trust_file_provider(pool), ] - # Platform-dependant authentication methods + # Platform-dependent authentication methods getprovider = getattr(svn.core, 'svn_auth_get_platform_specific_provider', None) if getprovider: diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/eol.py --- a/hgext/eol.py Tue Sep 11 00:12:07 2012 +0200 +++ b/hgext/eol.py Tue Sep 11 08:36:09 2012 -0700 @@ -99,7 +99,7 @@ # Matches a lone LF, i.e., one that is not part of CRLF. singlelf = re.compile('(^|[^\r])\n') # Matches a single EOL which can either be a CRLF where repeated CR -# are removed or a LF. We do not care about old Machintosh files, so a +# are removed or a LF. We do not care about old Macintosh files, so a # stray CR is an error. eolre = re.compile('\r*\n') diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/inotify/linux/_inotify.c --- a/hgext/inotify/linux/_inotify.c Tue Sep 11 00:12:07 2012 +0200 +++ b/hgext/inotify/linux/_inotify.c Tue Sep 11 08:36:09 2012 -0700 @@ -61,7 +61,7 @@ init_doc, "init() -> fd\n" "\n" - "Initialise an inotify instance.\n" + "Initialize an inotify instance.\n" "Return a file descriptor associated with a new inotify event queue."); static PyObject *add_watch(PyObject *self, PyObject *args) diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/largefiles/lfcommands.py diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/largefiles/overrides.py diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/mq.py diff -r 63e45aee46d4 -r 31f32a96e1e3 hgext/zeroconf/Zeroconf.py diff -r 63e45aee46d4 -r 31f32a96e1e3 mercurial/byterange.py diff -r 63e45aee46d4 -r 31f32a96e1e3 mercurial/commands.py --- a/mercurial/commands.py Tue Sep 11 00:12:07 2012 +0200 +++ b/mercurial/commands.py Tue Sep 11 08:36:09 2012 -0700 @@ -1696,7 +1696,7 @@ """format the changelog or an index DAG as a concise textual description If you pass a revlog index, the revlog's DAG is emitted. If you list - revision numbers, they get labelled in the output as rN. + revision numbers, they get labeled in the output as rN. Otherwise, the changelog DAG of the current repo is emitted. """ diff -r 63e45aee46d4 -r 31f32a96e1e3 mercurial/config.py --- a/mercurial/config.py Tue Sep 11 00:12:07 2012 +0200 +++ b/mercurial/config.py Tue Sep 11 08:36:09 2012 -0700 @@ -67,9 +67,9 @@ return self._data.get(section, {}).get(item, default) def backup(self, section, item): - """return a tuple allowing restore to reinstall previous values + """return a tuple allowing restore to reinstall a previous value - The main reason we need it is because it handle the "no data" case. + The main reason we need it is because it handles the "no data" case. """ try: value = self._data[section][item] diff -r 63e45aee46d4 -r 31f32a96e1e3 mercurial/dagparser.py --- a/mercurial/dagparser.py Tue Sep 11 00:12:07 2012 +0200 +++ b/mercurial/dagparser.py Tue Sep 11 08:36:09 2012 -0700 @@ -56,13 +56,13 @@ ... :forkhere # a label for the last of the 3 nodes from above ... +5 # 5 more nodes on one branch ... :mergethis # label again - ...