Fixed a typo in the processing of "note" query term

This commit is contained in:
John Wiegley 2009-11-01 21:16:01 -05:00
parent 6a78c24463
commit 0849bf24b1

View file

@ -156,7 +156,7 @@ query_lexer_t::token_t query_lexer_t::next_token()
else if (ident == "code")
return token_t(token_t::TOK_CODE);
else if (ident == "note")
return token_t(token_t::TOK_NOT);
return token_t(token_t::TOK_NOTE);
else if (ident == "tag")
return token_t(token_t::TOK_META);
else if (ident == "meta")