# HG changeset patch # User Joel Rosdahl # Date 1224945011 -7200 # Node ID 444d88175e33c21d508083585038e02523c4e912 # Parent 352627bcafc35764f1ece78d650b04e9169e6391 bookmarks: Fix spelling and grammar diff -r 352627bcafc3 -r 444d88175e33 hgext/bookmarks.py --- a/hgext/bookmarks.py Sat Oct 25 16:29:58 2008 +0200 +++ b/hgext/bookmarks.py Sat Oct 25 16:30:11 2008 +0200 @@ -7,7 +7,7 @@ '''mercurial bookmarks Mercurial bookmarks are local moveable pointers to changesets. Every bookmark -points to a changesets identified by it's hash. If you commit a changeset +points to a changeset identified by its hash. If you commit a changeset that is based on a changeset that has a bookmark on it, the bookmark is forwarded to the new changeset. @@ -60,7 +60,7 @@ def bookmark(ui, repo, mark=None, rev=None, force=False, delete=False, move=None): '''mercurial bookmarks - Bookmarks are pointer to certain commits that move when commiting. + Bookmarks are pointers to certain commits that move when commiting. Bookmarks are local. They can be renamed, copied and deleted. It is possible to use bookmark names in 'hg merge' and 'hg update' to update to a given bookmark. @@ -76,7 +76,7 @@ if move: if move not in marks: - raise util.Abort(_("a bookmark of this name doesnot exists")) + raise util.Abort(_("a bookmark of this name does not exist")) if mark in marks and not force: raise util.Abort(_("a bookmark of the same name already exists")) marks[mark] = marks[move] @@ -88,7 +88,7 @@ if mark == None: raise util.Abort(_("bookmark name required")) if mark not in marks: - raise util.Abort(_("a bookmark of this name does not exists")) + raise util.Abort(_("a bookmark of this name does not exist")) del marks[mark] write(repo, marks) return