From 72cee168901cb384d7ceed4492362dc7cf31a6d3 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Fri, 2 Dec 2016 16:14:47 -0800 Subject: [PATCH] remote: fix typo in git_fetch_init_options docs --- include/git2/remote.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.