summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@github.com>2016-12-04 15:58:40 +0000
committerGitHub <noreply@github.com>2016-12-04 15:58:40 +0000
commit5c18ece35f0030ceb92a37bd5f6183c3cc458eff (patch)
treef15c44011f72ceffe7a4bdc72a4d1b1e5d336d29
parentae5838f118a4819e608990a815bf8fc482be5772 (diff)
parent72cee168901cb384d7ceed4492362dc7cf31a6d3 (diff)
downloadlibgit2-5c18ece35f0030ceb92a37bd5f6183c3cc458eff.tar.gz
Merge pull request #4022 from josharian/patch-1
remote: fix typo in git_fetch_init_options docs
-rw-r--r--include/git2/remote.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/remote.h b/include/git2/remote.h
index c459f42cc..53c4aee46 100644
--- a/include/git2/remote.h
+++ b/include/git2/remote.h
@@ -569,7 +569,7 @@ typedef struct {
* Initializes a `git_fetch_options` with default values. Equivalent to
* creating an instance with GIT_FETCH_OPTIONS_INIT.
*
- * @param opts the `git_push_options` instance to initialize.
+ * @param opts the `git_fetch_options` instance to initialize.
* @param version the version of the struct; you should pass
* `GIT_FETCH_OPTIONS_VERSION` here.
* @return Zero on success; -1 on failure.