typo -- exceeds with eee

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1074523 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2011-02-25 14:03:12 +00:00
parent c66172cf3b
commit aaa57bc341
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ public final class BytesRefHash {
*/
public BytesRef get(int ord, BytesRef ref) {
assert bytesStart != null : "bytesStart is null - not initialized";
assert ord < bytesStart.length: "ord exceeeds byteStart len: " + bytesStart.length;
assert ord < bytesStart.length: "ord exceeds byteStart len: " + bytesStart.length;
return pool.setBytesRef(ref, bytesStart[ord]);
}