Commit 544d1519 by Benjamin C Meyer

Remove whitespace from the end of the line in documentation.

Signed-off-by: Benjamin C Meyer <ben@meyerhome.net>
parent e4def81a
......@@ -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;
......
......@@ -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
......
......@@ -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);
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment