From ce78f39e27f384ec7169510aaa447d6d455931c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Tue, 7 Jun 2011 14:18:22 +0200 Subject: [PATCH] config: update the git_config_add_file documentation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Martín Nieto --- include/git2/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/git2/config.h b/include/git2/config.h index 78a1f622a..fca9d9dc4 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);