doc fix from leif wickland up on mailing list

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1135747 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-06-14 19:00:27 +00:00
parent 93038d06aa
commit 0a48f15c3b
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ import java.io.DataInput;
/**
* This filter is used for selecting only those keys with columns that matches
* a particular prefix. For example, if prefix is 'an', it will pass keys will
* a particular prefix. For example, if prefix is 'an', it will pass keys with
* columns like 'and', 'anti' but not keys with columns like 'ball', 'act'.
*/
public class ColumnPrefixFilter extends FilterBase {
@ -91,4 +91,4 @@ public class ColumnPrefixFilter extends FilterBase {
kv.getBuffer(), kv.getRowOffset(), kv.getRowLength(), kv.getBuffer(),
kv.getFamilyOffset(), kv.getFamilyLength(), prefix, 0, prefix.length);
}
}
}