Fix typo on the comment

This commit is contained in:
Lee moon soo 2016-02-23 23:02:03 -08:00
parent b091b7efed
commit 438b212653
2 changed files with 2 additions and 2 deletions

View file

@ -108,7 +108,7 @@ public class InterpreterGroup extends ConcurrentHashMap<String, List<Interpreter
for (Interpreter intp : intpGroup) {
p.putAll(intp.getProperty());
}
// it's okay to break here while vevery List<Interpreters> will have the same property set
// it's okay to break here while every List<Interpreters> will have the same property set
break;
}
}

View file

@ -35,7 +35,7 @@ public class InterpreterSetting {
private String description;
private Properties properties;
// use 'interpreterGroup' as a field name to keep backward compativility of
// use 'interpreterGroup' as a field name to keep backward compatibility of
// conf/interpreter.json file format
private List<InterpreterInfo> interpreterGroup;
private transient InterpreterGroup interpreterGroupRef;