File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/com/intuit/fuzzymatcher/component Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ public Stream<Match<Document>> matchDocuments(Stream<Document> documents) {
4141 }
4242
4343 private Stream <Match <Document >> documentThresholdMatching (Document document , Set <Match <Element >> matchingElements ) {
44- Map <Document , List <Match <Element >>> mathes = matchingElements .stream ()
44+ Map <Document , List <Match <Element >>> matches = matchingElements .stream ()
4545 .collect (Collectors .groupingBy (matchElement -> matchElement .getMatchedWith ().getDocument ()));
4646
47- Stream <Match <Document >> result = mathes .entrySet ().stream ().flatMap (matchEntry -> {
47+ Stream <Match <Document >> result = matches .entrySet ().stream ().flatMap (matchEntry -> {
4848
4949 List <Score > childScoreList = matchEntry .getValue ()
5050 .stream ()
You can’t perform that action at this time.
0 commit comments