diff --git a/src/doc/user/usermanual.xml b/src/doc/user/usermanual.xml
index 07b6529e..035e3c46 100644
--- a/src/doc/user/usermanual.xml
+++ b/src/doc/user/usermanual.xml
@@ -3358,7 +3358,7 @@ dir:recoll dir:src -dir:utils -dir:common
p can be used to turn the
default phrase search into a proximity one
- (unordered). Example:"order any in"p
+ (unordered). Example: "order any in"p
C will turn on case
diff --git a/src/rcldb/rclterms.cpp b/src/rcldb/rclterms.cpp
index df52bfac..ab3f3379 100644
--- a/src/rcldb/rclterms.cpp
+++ b/src/rcldb/rclterms.cpp
@@ -300,10 +300,11 @@ bool Db::termMatch(int typ_sens, const string &lang, const string &_term,
for (vector::const_iterator it1 = sg.begin();
it1 != sg.end(); it1++) {
if (it1->find_first_of(" ") != string::npos) {
- if (multiwords)
+ if (multiwords) {
multiwords->push_back(*it1);
+ }
} else {
- exp1.push_back(*it);
+ exp1.push_back(*it1);
}
}
}