]> git.ipfire.org Git - thirdparty/git.git/commitdiff
config.c: *.txt -> *.adoc fixes
authorTodd Zullinger <tmz@pobox.com>
Mon, 3 Mar 2025 20:44:13 +0000 (15:44 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 3 Mar 2025 21:49:22 +0000 (13:49 -0800)
Signed-off-by: Todd Zullinger <tmz@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
config.c

index 36f76fafe53ee755c4f18d9ea398b5dbe9a614fe..dcb5cb52657348fd408d17e5aa5c595fd815aac2 100644 (file)
--- a/config.c
+++ b/config.c
@@ -1652,7 +1652,7 @@ static int git_default_core_config(const char *var, const char *value,
                return 0;
        }
 
-       /* Add other config variables here and to Documentation/config.txt. */
+       /* Add other config variables here and to Documentation/config.adoc. */
        return platform_core_config(var, value, ctx, cb);
 }
 
@@ -1663,7 +1663,7 @@ static int git_default_sparse_config(const char *var, const char *value)
                return 0;
        }
 
-       /* Add other config variables here and to Documentation/config/sparse.txt. */
+       /* Add other config variables here and to Documentation/config/sparse.adoc. */
        return 0;
 }
 
@@ -1679,7 +1679,7 @@ static int git_default_i18n_config(const char *var, const char *value)
                return git_config_string(&git_log_output_encoding, var, value);
        }
 
-       /* Add other config variables here and to Documentation/config.txt. */
+       /* Add other config variables here and to Documentation/config.adoc. */
        return 0;
 }
 
@@ -1715,7 +1715,7 @@ static int git_default_branch_config(const char *var, const char *value)
                return 0;
        }
 
-       /* Add other config variables here and to Documentation/config.txt. */
+       /* Add other config variables here and to Documentation/config.adoc. */
        return 0;
 }
 
@@ -1744,7 +1744,7 @@ static int git_default_push_config(const char *var, const char *value)
                return 0;
        }
 
-       /* Add other config variables here and to Documentation/config.txt. */
+       /* Add other config variables here and to Documentation/config.adoc. */
        return 0;
 }
 
@@ -1760,7 +1760,7 @@ static int git_default_mailmap_config(const char *var, const char *value)
                return git_config_string(&git_mailmap_blob, var, value);
        }
 
-       /* Add other config variables here and to Documentation/config.txt. */
+       /* Add other config variables here and to Documentation/config.adoc. */
        return 0;
 }
 
@@ -1773,7 +1773,7 @@ static int git_default_attr_config(const char *var, const char *value)
 
        /*
         * Add other attribute related config variables here and to
-        * Documentation/config/attr.txt.
+        * Documentation/config/attr.adoc.
         */
        return 0;
 }
@@ -1831,7 +1831,7 @@ int git_default_config(const char *var, const char *value,
        if (starts_with(var, "sparse."))
                return git_default_sparse_config(var, value);
 
-       /* Add other config variables here and to Documentation/config.txt. */
+       /* Add other config variables here and to Documentation/config.adoc. */
        return 0;
 }