diff options
author | Carlos Martín Nieto <cmn@elego.de> | 2011-06-07 14:18:22 +0200 |
---|---|---|
committer | Carlos Martín Nieto <cmn@elego.de> | 2011-06-07 14:18:22 +0200 |
commit | ce78f39e27f384ec7169510aaa447d6d455931c8 (patch) | |
tree | db4d62e7d11f17d3265731b0d2d71b03a2467898 /include/git2/config.h | |
parent | 340fc0d40ac03680d6f7964bc47f8c8d7fbbc57c (diff) | |
download | libgit2-ce78f39e27f384ec7169510aaa447d6d455931c8.tar.gz |
config: update the git_config_add_file documentation
Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
Diffstat (limited to 'include/git2/config.h')
-rw-r--r-- | include/git2/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/config.h b/include/git2/config.h index 78a1f622..fca9d9dc 100644 --- a/include/git2/config.h +++ b/include/git2/config.h @@ -89,8 +89,8 @@ GIT_EXTERN(int) git_config_open_global(git_config **cfg); * Note that the configuration will call the backend's ->free() * function. * - * @param cfg the configuration to add the backend to - * @param backend the backend to add + * @param cfg the configuration to add the file to + * @param file the configuration source (file) to add * @param priority the priority the backend should have */ GIT_EXTERN(int) git_config_add_file(git_config *cfg, git_config_file *file, int priority); |