fix typo in comment

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1143047 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Erik Hatcher 2011-07-05 13:20:35 +00:00
parent 2cb8ffa16f
commit 9748b206f2
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public abstract class SolrCacheBase {
try {
String input = (null == configValue) ? "0" : configValue.trim();
// odd undocumented legacy behavior, -1 ment "all" (now "100%")
// odd undocumented legacy behavior, -1 meant "all" (now "100%")
strVal = ("-1".equals(input)) ? "100%" : input;
if (strVal.indexOf("%") == (strVal.length() - 1)) {