diff options
Diffstat (limited to 'src/git')
-rw-r--r-- | src/git/common.h | 4 | ||||
-rw-r--r-- | src/git/repository.h | 4 | ||||
-rw-r--r-- | src/git/tag.h | 12 | ||||
-rw-r--r-- | src/git/tree.h | 6 |
4 files changed, 13 insertions, 13 deletions
diff --git a/src/git/common.h b/src/git/common.h index faf9702a7..672aa5548 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 9417d7b51..a65d4796c 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 aa232128b..cbfb034a6 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 9e2d0776a..ecb8884b2 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 |