mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-02 21:34:15 +00:00
include: Fix unmatched params in documentation
This commit is contained in:
parent
d37ba6720d
commit
f27f29b100
@ -81,7 +81,7 @@ GIT_EXTERN(unsigned int) git_reflog_entrycount(git_reflog *reflog);
|
||||
*
|
||||
* @param reflog a previously loaded reflog
|
||||
* @param idx the position to lookup
|
||||
* @param the entry; NULL if not found
|
||||
* @return the entry; NULL if not found
|
||||
*/
|
||||
GIT_EXTERN(const git_reflog_entry *) git_reflog_entry_byindex(git_reflog *reflog, unsigned int idx);
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user