From 5105f2530dddc8ad72c6d4a8f3b189e7e75c8251 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 11 Nov 2019 23:25:16 -0500 Subject: spelling: already --- qtools/qcstringlist.cpp | 6 +++--- qtools/qstringlist.cpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/qtools/qcstringlist.cpp b/qtools/qcstringlist.cpp index 5725971..4bb231d 100644 --- a/qtools/qcstringlist.cpp +++ b/qtools/qcstringlist.cpp @@ -157,11 +157,11 @@ QCStringList QCStringList::grep( const QRegExp &expr ) const QCString QCStringList::join( const QCString &sep ) const { QCString res; - bool alredy = FALSE; + bool already = FALSE; for ( QCStringList::ConstIterator it = begin(); it != end(); ++it ) { - if ( alredy ) + if ( already ) res += sep; - alredy = TRUE; + already = TRUE; res += *it; } diff --git a/qtools/qstringlist.cpp b/qtools/qstringlist.cpp index 7696340..aa7ac16 100644 --- a/qtools/qstringlist.cpp +++ b/qtools/qstringlist.cpp @@ -269,11 +269,11 @@ QStringList QStringList::grep( const QRegExp &expr ) const QString QStringList::join( const QString &sep ) const { QString res; - bool alredy = FALSE; + bool already = FALSE; for ( QStringList::ConstIterator it = begin(); it != end(); ++it ) { - if ( alredy ) + if ( already ) res += sep; - alredy = TRUE; + already = TRUE; res += *it; } -- cgit v0.12