Fixed a few typos.

This commit is contained in:
Bernardo Sulzbach
2015-05-20 03:31:11 -03:00
parent 641e18235c
commit abc432fcd6
11 changed files with 14 additions and 14 deletions

View File

@@ -89,7 +89,7 @@ QString removeComments(QString s)
// a 'simple' regular expression. I know there're better ways to do this...
// This function removes any single line comments (starting with '--') from a given string. It does
// so by going through the string character by character and trying to keep track of wether we currently
// so by going through the string character by character and trying to keep track of whether we currently
// are in a string or identifier and only removing those parts starting with '--' which are in neither.
QChar lastChar = 0;