Skip to content

Commit

Permalink
Apply review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Aug 9, 2024
1 parent f0a2c6c commit bf02dae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,8 @@ void agenciesAndFeedPublisher() {
"Meridian Ave N & N 148",
"Meridian Ave N N 148",
"Meridian Ave N 148",
"Meridian & 148 N",
"148 N & Meridian",
"Meridian & N 148",
"Meridian Ave 148",
"Meridian Av 148",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/
class EnglishNGramAnalyzer extends Analyzer {

// matches one or more numbers followed by the English suffixes "st", "nd", "rd", "th"
// Matches one or more numbers followed by the English suffixes "st", "nd", "rd", "th"
private static final Pattern NUMBER_SUFFIX_PATTERN = Pattern.compile("(\\d+)(st|nd|rd|th)\\b");

@Override
Expand Down

0 comments on commit bf02dae

Please sign in to comment.