Skip to content

Commit

Permalink
Allow slightly shorter sentences
Browse files Browse the repository at this point in the history
  • Loading branch information
tuetschek committed Mar 10, 2016
1 parent 77e5639 commit 99bbf44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alex/tools/crowdflower/nlg_job/CFJOB-reply.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ require(['jquery-noconflict'], function($) {
toks = toks.substring(1, toks.length - 1); // remove the padding spaces
toks = toks.split(" ");

if (toks.length < 2 * data.values.length || toks.length < data.values.length + 3){
if (toks.length < 2 * data.values.length || toks.length < data.values.length + 2){
return 'Your reply is too short. Use full, fluent sentences.';
}

Expand Down

0 comments on commit 99bbf44

Please sign in to comment.