Commit ac26e2454e71010821f2c85046b5cbd5a522d384

nulltoken 2011-03-30T23:46:54

Rename git_tag_create_o_f() to git_tag_create_fo()

diff --git a/include/git2/tag.h b/include/git2/tag.h
index 1ee1e0c..0a37f6c 100644
--- a/include/git2/tag.h
+++ b/include/git2/tag.h
@@ -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,
diff --git a/src/tag.c b/src/tag.c
index ff2d0ab..5a1101a 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -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,