Fixed typos, spelling correction

This commit is contained in:
dartraiden
2015-05-04 02:09:30 +03:00
parent f5b0008158
commit 8ac83cfd42
31 changed files with 44 additions and 44 deletions

View File

@@ -83,7 +83,7 @@ bool RssDownloadRule::matches(const QString &article_title) const
if (ep.endsWith('-')) { // Infinite range
int epOurs = ep.left(ep.size() - 1).toInt();
// Extract partial match from article and ocmpare as digits
// Extract partial match from article and compare as digits
pos = reg.indexIn(article_title);
if (pos != -1) {
int epTheirs = reg.cap(1).toInt();
@@ -100,7 +100,7 @@ bool RssDownloadRule::matches(const QString &article_title) const
int epOursFirst = range.first().toInt();
int epOursLast = range.last().toInt();
// Extract partial match from article and ocmpare as digits
// Extract partial match from article and compare as digits
pos = reg.indexIn(article_title);
if (pos != -1) {
int epTheirs = reg.cap(1).toInt();