Remove whitespace from the end of the line in documentation. Signed-off-by: Benjamin C Meyer <ben@meyerhome.net>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
diff --git a/src/git/common.h b/src/git/common.h
index faf9702..672aa55 100644
--- a/src/git/common.h
+++ b/src/git/common.h
@@ -85,9 +85,9 @@
GIT_BEGIN_DECL
-/**
+/**
* Representation of an existing git repository,
- * including all its object contents
+ * including all its object contents
*/
typedef struct git_repository git_repository;
diff --git a/src/git/repository.h b/src/git/repository.h
index 9417d7b..a65d479 100644
--- a/src/git/repository.h
+++ b/src/git/repository.h
@@ -21,14 +21,14 @@ GIT_BEGIN_DECL
* of its object database
*
* @param odb an existing object database to back the repo
- * @return the new repository handle; NULL on error
+ * @return the new repository handle; NULL on error
*/
GIT_EXTERN(git_repository *) git_repository_alloc(git_odb *odb);
/**
* Lookup a reference to one of the objects in the repostory.
- *
+ *
* The generated reference is owned by the repository and
* should not be freed by the user.
* The generated reference should be cast back to the
diff --git a/src/git/tag.h b/src/git/tag.h
index aa23212..cbfb034 100644
--- a/src/git/tag.h
+++ b/src/git/tag.h
@@ -91,23 +91,23 @@ GIT_EXTERN(const char *) git_tag_message(git_tag *t);
GIT_EXTERN(void) git_tag_set_target(git_tag *tag, git_object *target);
/**
- * Set the name of a tag
+ * Set the name of a tag
* @param tag The tag to modify
- * @param name the new name for the tag
+ * @param name the new name for the tag
*/
GIT_EXTERN(void) git_tag_set_name(git_tag *tag, const char *name);
/**
- * Set the tagger of a tag
+ * Set the tagger of a tag
* @param tag The tag to modify
- * @param tagger the new tagger for the tag
+ * @param tagger the new tagger for the tag
*/
GIT_EXTERN(void) git_tag_set_tagger(git_tag *tag, const git_person *tagger);
/**
- * Set the message of a tag
+ * Set the message of a tag
* @param tag The tag to modify
- * @param message the new tagger for the tag
+ * @param message the new tagger for the tag
*/
GIT_EXTERN(void) git_tag_set_message(git_tag *tag, const char *message);
diff --git a/src/git/tree.h b/src/git/tree.h
index 9e2d077..ecb8884 100644
--- a/src/git/tree.h
+++ b/src/git/tree.h
@@ -146,7 +146,7 @@ GIT_EXTERN(int) git_tree_remove_entry_byname(git_tree *tree, const char *filenam
/**
* Change the SHA1 id of a tree entry.
*
- * This will mark the tree that contains the entry as modified;
+ * This will mark the tree that contains the entry as modified;
* the modified entry will be written back to disk on the next git_object_write()
*
* @param entry Entry object which will be modified
@@ -157,7 +157,7 @@ GIT_EXTERN(void) git_tree_entry_set_id(git_tree_entry *entry, const git_oid *oid
/**
* Change the filename of a tree entry.
*
- * This will mark the tree that contains the entry as modified;
+ * This will mark the tree that contains the entry as modified;
* the modified entry will be written back to disk on the next git_object_write()
*
* @param entry Entry object which will be modified
@@ -168,7 +168,7 @@ GIT_EXTERN(void) git_tree_entry_set_name(git_tree_entry *entry, const char *name
/**
* Change the attributes of a tree entry.
*
- * This will mark the tree that contains the entry as modified;
+ * This will mark the tree that contains the entry as modified;
* the modified entry will be written back to disk on the next git_object_write()
*
* @param entry Entry object which will be modified