mirror of
https://github.com/curl/curl.git
synced 2026-07-13 23:27:18 +03:00
stop using the word 'just'
Everywhere. In documentation and code comments. It is almost never a good word and almost always a filler that should be avoided. Closes #20793
This commit is contained in:
parent
4b583b7585
commit
b4dba346cd
213 changed files with 727 additions and 772 deletions
|
|
@ -421,7 +421,7 @@ UNITTEST ParameterError parse_cert_parameter(const char *cert_parameter,
|
|||
memcpy(certname_place, param_place, span);
|
||||
param_place += span;
|
||||
certname_place += span;
|
||||
/* we just ate all the non-special chars. now we are on either a special
|
||||
/* we ate all the non-special chars. now we are on either a special
|
||||
* char or the end of the string. */
|
||||
switch(*param_place) {
|
||||
case '\0':
|
||||
|
|
@ -1270,7 +1270,7 @@ static ParameterError parse_ech(struct OperationConfig *config,
|
|||
} /* file done */
|
||||
}
|
||||
else {
|
||||
/* Simple case: just a string, with a keyword */
|
||||
/* Simple case: a string, with a keyword */
|
||||
err = getstr(&config->ech, nextarg, DENY_BLANK);
|
||||
}
|
||||
return err;
|
||||
|
|
@ -1415,7 +1415,7 @@ static ParameterError parse_quote(struct OperationConfig *config,
|
|||
err = add2list(&config->postquote, nextarg);
|
||||
break;
|
||||
case '+':
|
||||
/* prefixed with a plus makes it a just-before-transfer one */
|
||||
/* prefixed with a plus makes it an immediately-before-transfer one */
|
||||
nextarg++;
|
||||
err = add2list(&config->prequote, nextarg);
|
||||
break;
|
||||
|
|
@ -3115,7 +3115,7 @@ ParameterError parse_args(int argc, argv_item_t argv[])
|
|||
else {
|
||||
bool used;
|
||||
|
||||
/* Just add the URL please */
|
||||
/* add the URL please */
|
||||
err = getparameter("--url", orig_opt, &used, config, 0);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue