[Python-checkins] devguide: Wording fixes

antoine.pitrou python-checkins at python.org
Sun Feb 6 22:55:27 CET 2011


antoine.pitrou pushed 59f424c61ee1 to devguide:

http://hg.python.org/devguide/rev/59f424c61ee1
changeset:   262:59f424c61ee1
branch:      hg_transition
tag:         tip
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Sun Feb 06 22:55:23 2011 +0100
summary:
  Wording fixes

files:
  faq.rst

diff --git a/faq.rst b/faq.rst
--- a/faq.rst
+++ b/faq.rst
@@ -197,8 +197,8 @@
 **Be careful** though, as it might add some files that are not desired in
 the repository (such as build products, cache files, or other data).
 
-You will then need to run ``hg commit`` (as discussed :ref:`below <hg-commit>`)
-to commit the file(s) to your local repository.
+You will then need to run ``hg commit`` (as discussed below) to commit
+the file(s) to your local repository.
 
 
 .. _hg-commit:
@@ -206,7 +206,7 @@
 How do I commit a change to a file?
 -------------------------------------------------------------------------------
 
-To have any changes to a file (which include adding a new file or deleting
+To commit any changes to a file (which includes adding a new file or deleting
 an existing one), you use the command::
 
  hg commit [PATH]
@@ -214,7 +214,7 @@
 ``[PATH]`` is optional: if it is omitted, all changes in your working copy
 will be committed to the local repository.  When you commit, be sure that all
 changes are desired by :ref:`reviewing them first <hg-status>`;
-especially, when making commits that you intend to push to public repositories,
+also, when making commits that you intend to push to public repositories,
 you should **not** commit together unrelated changes.
 
 To abort a commit that you are in the middle of, leave the message

--
Repository URL: http://hg.python.org/devguide


More information about the Python-checkins mailing list