Skip to content

Commit

Permalink
Merge pull request #291 from graue70/patch-1
Browse files Browse the repository at this point in the history
Fix missing whitespace in error message
  • Loading branch information
niklas88 committed Nov 11, 2019
2 parents f2ece56 + f7b3829 commit 15b90ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engine/Values.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void Values::writeValues(IdTable* res, const Index& index,
size_t id;
if (!index.getVocab().getId(row[colIdx], &id)) {
AD_THROW(ad_semsearch::Exception::BAD_INPUT,
"The word " + row[colIdx] + "is not part of the vocabulary.")
"The word " + row[colIdx] + " is not part of the vocabulary.")
}
result(rowIdx, colIdx) = id;
}
Expand Down

0 comments on commit 15b90ac

Please sign in to comment.