Skip to content

Commit 8c3ca35

Browse files
peffgitster
authored andcommitted
config: lower-case first word of error strings
This follows our usual style (both throughout git, and throughout the rest of this file). This covers the whole file, but note that I left the capitalization in the multi-sentence: error: malformed value... error: Must be one of ... because it helps make it clear that we are starting a new sentence in the second one. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d95553a commit 8c3ca35

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

config.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ static int handle_path_include(const char *path, struct config_include_data *inc
108108

109109
expanded = expand_user_path(path);
110110
if (!expanded)
111-
return error("Could not expand include path '%s'", path);
111+
return error("could not expand include path '%s'", path);
112112
path = expanded;
113113

114114
/*
@@ -950,7 +950,7 @@ static int git_default_branch_config(const char *var, const char *value)
950950
else if (!strcmp(value, "always"))
951951
autorebase = AUTOREBASE_ALWAYS;
952952
else
953-
return error("Malformed value for %s", var);
953+
return error("malformed value for %s", var);
954954
return 0;
955955
}
956956

@@ -976,7 +976,7 @@ static int git_default_push_config(const char *var, const char *value)
976976
else if (!strcmp(value, "current"))
977977
push_default = PUSH_DEFAULT_CURRENT;
978978
else {
979-
error("Malformed value for %s: %s", var, value);
979+
error("malformed value for %s: %s", var, value);
980980
return error("Must be one of nothing, matching, simple, "
981981
"upstream or current.");
982982
}
@@ -2223,7 +2223,7 @@ void git_config_set_multivar_in_file(const char *config_filename,
22232223
{
22242224
if (git_config_set_multivar_in_file_gently(config_filename, key, value,
22252225
value_regex, multi_replace) < 0)
2226-
die(_("Could not set '%s' to '%s'"), key, value);
2226+
die(_("could not set '%s' to '%s'"), key, value);
22272227
}
22282228

22292229
int git_config_set_multivar_gently(const char *key, const char *value,
@@ -2404,7 +2404,7 @@ int git_config_rename_section(const char *old_name, const char *new_name)
24042404
#undef config_error_nonbool
24052405
int config_error_nonbool(const char *var)
24062406
{
2407-
return error("Missing value for '%s'", var);
2407+
return error("missing value for '%s'", var);
24082408
}
24092409

24102410
int parse_config_key(const char *var,

0 commit comments

Comments
 (0)