From eba75dbc2edd424f22f03eea463d71e135afa3c8 Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Tue, 24 Jul 2012 22:39:03 +0900 Subject: [PATCH] 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". --- expand.cpp | 2 +- parser.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/expand.cpp b/expand.cpp index d2c58f3cc..f0f3c7fc6 100644 --- a/expand.cpp +++ b/expand.cpp @@ -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)); diff --git a/parser.cpp b/parser.cpp index 1e462ba79..738bb985c 100644 --- a/parser.cpp +++ b/parser.cpp @@ -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 );