Mikhail Terekhov 8 years ago
parent
commit
cefa7f4c0c
2 changed files with 3 additions and 3 deletions
  1. 2 2
      docs/tutorial/file-format.txt
  2. 1 1
      docs/tutorial/remote.txt

+ 2 - 2
docs/tutorial/file-format.txt

@@ -33,7 +33,7 @@ A commit file looks like this::
   [parent <parent sha> if several parents from merges]
   [parent <parent sha> if several parents from merges]
   author <author name> <author e-mail> <timestamp> <timezone>
   author <author name> <author e-mail> <timestamp> <timezone>
   committer <author name> <author e-mail> <timestamp> <timezone>
   committer <author name> <author e-mail> <timestamp> <timezone>
- 
+
   <commit message>
   <commit message>
 
 
 But where are the changes you committed? The commit contains a reference to a
 But where are the changes you committed? The commit contains a reference to a
@@ -90,7 +90,7 @@ used for the history. They can either appear as simple files on disk (one file
 per object) or in a ``pack`` file, which is a container for a number of these
 per object) or in a ``pack`` file, which is a container for a number of these
 objects.
 objects.
 
 
-The is also an index of the current state of the working copy in the
+There is also an index of the current state of the working copy in the
 repository as well as files to track the existing branches and tags.
 repository as well as files to track the existing branches and tags.
 
 
 For a more detailed explanation of object formats and SHA-1 digests, see:
 For a more detailed explanation of object formats and SHA-1 digests, see:

+ 1 - 1
docs/tutorial/remote.txt

@@ -28,7 +28,7 @@ The smart server protocol can be accessed over either plain TCP (git://),
 SSH (git+ssh://) or tunneled over HTTP (http://).
 SSH (git+ssh://) or tunneled over HTTP (http://).
 
 
 Dulwich provides support for accessing remote repositories in
 Dulwich provides support for accessing remote repositories in
-``dulwich.client``. To create a new client, you can either construct
+``dulwich.client``. To create a new client, you can construct
 one manually::
 one manually::
 
 
    >>> from dulwich.client import TCPGitClient
    >>> from dulwich.client import TCPGitClient