X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2Ftable.cpp;h=bd7225db0f25dcf20414cf2dd9bf7095498ea213;hb=361d4d43e31c749d5e087192a1bd2e58f13046b9;hp=411fd5b6ab5534f929684b38458cc727856d2f6a;hpb=171e2511894a179dc4968a7041d15585116ecd42;p=lyx.git diff --git a/src/tex2lyx/table.cpp b/src/tex2lyx/table.cpp index 411fd5b6ab..bd7225db0f 100644 --- a/src/tex2lyx/table.cpp +++ b/src/tex2lyx/table.cpp @@ -566,7 +566,7 @@ void fix_colalign(vector & colinfo) { // Try to move extra leftlines to the previous column. // We do this only if both special fields are empty, otherwise we - // can't tell wether the result will be the same. + // can't tell whether the result will be the same. for (size_t col = 0; col < colinfo.size(); ++col) { if (colinfo[col].leftlines > 1 && colinfo[col].special.empty() && col > 0 && @@ -596,7 +596,7 @@ void fix_colalign(vector & colinfo) /*! * Parse hlines and similar stuff. - * \returns wether the token \p t was parsed + * \returns whether the token \p t was parsed */ bool parse_hlines(Parser & p, Token const & t, string & hlines, bool is_long_tabular) @@ -712,7 +712,7 @@ void parse_table(Parser & p, ostream & os, bool is_long_tabular, } // We need to handle structure stuff first in order to - // determine wether we need to output a HLINE separator + // determine whether we need to output a HLINE separator // before the row or not. if (t.cat() == catEscape) { if (parse_hlines(p, t, hlines, is_long_tabular)) {