mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Fixed two small spelling mistakes
- Saw these during normal usage today. "parens" or "parenthesis" was spelled as "parans". Fixed two instances of this to "parenthesis".
This commit is contained in:
parent
32d2d0f0d0
commit
eba75dbc2e
2 changed files with 2 additions and 2 deletions
|
@ -1328,7 +1328,7 @@ static int expand_cmdsubst( parser_t &parser, const wcstring &input, std::vector
|
||||||
case -1:
|
case -1:
|
||||||
parser.error( SYNTAX_ERROR,
|
parser.error( SYNTAX_ERROR,
|
||||||
-1,
|
-1,
|
||||||
L"Mismatched parans" );
|
L"Mismatched parenthesis" );
|
||||||
return 0;
|
return 0;
|
||||||
case 0:
|
case 0:
|
||||||
outList.push_back(completion_t(input));
|
outList.push_back(completion_t(input));
|
||||||
|
|
|
@ -2681,7 +2681,7 @@ int parser_t::parser_test_argument( const wchar_t *arg, wcstring *out, const wch
|
||||||
{
|
{
|
||||||
error( SYNTAX_ERROR,
|
error( SYNTAX_ERROR,
|
||||||
offset,
|
offset,
|
||||||
L"Mismatched parans" );
|
L"Mismatched parenthesis" );
|
||||||
this->print_errors( *out, prefix);
|
this->print_errors( *out, prefix);
|
||||||
}
|
}
|
||||||
free( arg_cpy );
|
free( arg_cpy );
|
||||||
|
|
Loading…
Reference in a new issue