Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
f27f29b1
Commit
f27f29b1
authored
Jul 09, 2011
by
Vicent Marti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Fix unmatched params in documentation
parent
d37ba672
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
include/git2/reflog.h
+1
-1
include/git2/refspec.h
+2
-2
No files found.
include/git2/reflog.h
View file @
f27f29b1
...
...
@@ -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
);
...
...
include/git2/refspec.h
View file @
f27f29b1
...
...
@@ -33,9 +33,9 @@ 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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment