Fixed a typo in the processing of "note" query term
This commit is contained in:
parent
6a78c24463
commit
0849bf24b1
1 changed files with 1 additions and 1 deletions
|
|
@ -156,7 +156,7 @@ query_lexer_t::token_t query_lexer_t::next_token()
|
||||||
else if (ident == "code")
|
else if (ident == "code")
|
||||||
return token_t(token_t::TOK_CODE);
|
return token_t(token_t::TOK_CODE);
|
||||||
else if (ident == "note")
|
else if (ident == "note")
|
||||||
return token_t(token_t::TOK_NOT);
|
return token_t(token_t::TOK_NOTE);
|
||||||
else if (ident == "tag")
|
else if (ident == "tag")
|
||||||
return token_t(token_t::TOK_META);
|
return token_t(token_t::TOK_META);
|
||||||
else if (ident == "meta")
|
else if (ident == "meta")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue