Skip to content

Commit

Permalink
Change NLP verbose of Otherwise sentences
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagodp committed Jun 1, 2018
1 parent 5b6ed34 commit e1509ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/modules/nlp/NLPBasedSentenceRecognizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class NLPBasedSentenceRecognizer {
this._uiPropertyRec.recognizeSentences(language, uiElement.items, errors, warnings);
for (let item of uiElement.items || []) {
// Otherwise sentences of items
this._variantSentenceRec.recognizeSentences(language, item.otherwiseSentences, errors, warnings);
this._variantSentenceRec.recognizeSentences(language, item.otherwiseSentences, errors, warnings, 'Otherwise sentences');
}
}
// Databases
Expand Down
2 changes: 1 addition & 1 deletion modules/nlp/NLPBasedSentenceRecognizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class NLPBasedSentenceRecognizer {
for ( let item of uiElement.items || [] ) {
// Otherwise sentences of items
this._variantSentenceRec.recognizeSentences(
language, item.otherwiseSentences, errors, warnings );
language, item.otherwiseSentences, errors, warnings, 'Otherwise sentences' );
}
}

Expand Down

0 comments on commit e1509ab

Please sign in to comment.