Commit ac26e245 by nulltoken

Rename git_tag_create_o_f() to git_tag_create_fo()

parent 9e680bcc
......@@ -202,7 +202,7 @@ GIT_EXTERN(int) git_tag_create_o(
* for consistency.
*
* @param target OID to which this tag points; note that no
* validation is done on this OID. Use the _o_f version of this
* validation is done on this OID. Use the _fo version of this
* method to assure a proper object is being tagged
*
* @param target_type Type of the tagged OID; note that no
......@@ -239,7 +239,7 @@ GIT_EXTERN(int) git_tag_create_f(
*
* @see git_tag_create_f
*/
GIT_EXTERN(int) git_tag_create_o_f(
GIT_EXTERN(int) git_tag_create_fo(
git_oid *oid,
git_repository *repo,
const char *tag_name,
......
......@@ -288,7 +288,7 @@ int git_tag_create(
tagger, message, 0);
}
int git_tag_create_o_f(
int git_tag_create_fo(
git_oid *oid,
git_repository *repo,
const char *tag_name,
......
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