From 8abfa766fd6ca98c5a8e0608d8fef52bee0e83ce Mon Sep 17 00:00:00 2001 From: Al Date: Wed, 15 Feb 2017 02:26:18 -0500 Subject: [PATCH] [fix] paren --- src/address_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/address_parser.c b/src/address_parser.c index 6144d0e8..a642eef4 100644 --- a/src/address_parser.c +++ b/src/address_parser.c @@ -1380,7 +1380,7 @@ bool address_parser_features(void *self, void *ctx, tokenized_string_t *tokenize char *next_word = next_word_or_phrase.str; size_t next_word_len = 1; - if (is_plain_word_phrase_type(next_word_or_phrase.type) { + if (is_plain_word_phrase_type(next_word_or_phrase.type)) { uint32_t next_word_freq = word_vocab_frequency(parser, next_word); token_t next_token = tokenized->tokens->a[next_index]; bool next_token_numeric = is_numeric_token(next_token.type);