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:
Colin Woodbury 2012-07-24 22:39:03 +09:00
parent 32d2d0f0d0
commit eba75dbc2e
2 changed files with 2 additions and 2 deletions

View file

@ -1328,7 +1328,7 @@ static int expand_cmdsubst( parser_t &parser, const wcstring &input, std::vector
case -1:
parser.error( SYNTAX_ERROR,
-1,
L"Mismatched parans" );
L"Mismatched parenthesis" );
return 0;
case 0:
outList.push_back(completion_t(input));

View file

@ -2681,7 +2681,7 @@ int parser_t::parser_test_argument( const wchar_t *arg, wcstring *out, const wch
{
error( SYNTAX_ERROR,
offset,
L"Mismatched parans" );
L"Mismatched parenthesis" );
this->print_errors( *out, prefix);
}
free( arg_cpy );