summaryrefslogtreecommitdiff
path: root/include/git2/refspec.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-07-09 15:13:32 +0200
committerVicent Marti <tanoku@gmail.com>2011-07-11 02:59:17 +0200
commitf27f29b1005d96d1a7adc8702e9958df3965d818 (patch)
tree48afe2a754320146505c1c7ccc725f73cbd05aac /include/git2/refspec.h
parentd37ba6720de36b5121f4e978f65ab5703d12523f (diff)
downloadlibgit2-f27f29b1005d96d1a7adc8702e9958df3965d818.tar.gz
include: Fix unmatched params in documentation
Diffstat (limited to 'include/git2/refspec.h')
-rw-r--r--include/git2/refspec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/git2/refspec.h b/include/git2/refspec.h
index 0cbe42ff..e6b83c35 100644
--- a/include/git2/refspec.h
+++ b/include/git2/refspec.h
@@ -33,10 +33,10 @@ int git_refspec_src_match(const git_refspec *refspec, const char *refname);
* Transform a reference to its target following the refspec's rules
*
* @param out where to store the target name
- * @param in the source reference
+ * @param outlen the size ouf the `out` buffer
* @param spec the refspec
- * @param len the length of the out buffer
+ * @param name the name of the reference to transform
* @preturn GIT_SUCCESS, GIT_ESHORTBUFFER or another error
*/
-int git_refspec_transform(char *out, size_t outlen, const git_refspec *spec, const char *name);
+int git_refspec_transform(char *out, size_t outlen, const git_refspec *spec, const char *name);
#endif