Fix typos in remote repositories tutorial
authorDavid Pursehouse <david.pursehouse@gmail.com>
Wed, 11 Dec 2013 05:49:47 +0000 (14:49 +0900)
committerJelmer Vernooij <jelmer@samba.org>
Wed, 11 Dec 2013 23:02:26 +0000 (23:02 +0000)
Change-Id: I3d6b9d57c6080fc7f360c077a0d70497f5700045
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
docs/tutorial/remote.txt

index 3a8be9a43d8924bed0f1dfc226e8e752ad37fd2f..ff99820510a86daa964142c12b0bd500e4538a51 100644 (file)
@@ -54,7 +54,7 @@ which claims that the client doesn't have any objects::
    ...     def ack(self, sha): pass
    ...     def next(self): pass
 
-With the determine_wants function in place, we can now fetch a pack,
+With the ``determine_wants`` function in place, we can now fetch a pack,
 which we will write to a ``StringIO`` object::
 
    >>> from cStringIO import StringIO
@@ -70,14 +70,14 @@ which we will write to a ``StringIO`` object::
 Fetching objects into a local repository
 ----------------------------------------
 
-It also possible to fetch from a remote repository into a local repository,
-in which case dulwich takes care of providing the right graph walker, and
+It is also possible to fetch from a remote repository into a local repository,
+in which case Dulwich takes care of providing the right graph walker, and
 importing the received pack file into the local repository::
 
    >>> from dulwich.repo import Repo
    >>> local = Repo.init("local", mkdir=True)
    >>> remote_refs = client.fetch("/", local)
 
-Let's show down the server now that all tests have been run::
+Let's shut down the server now that all tests have been run::
 
    >>> dul_server.shutdown()