Index: src/main/java/org/apache/hadoop/hbase/filter/ColumnPrefixFilter.java
===================================================================
--- src/main/java/org/apache/hadoop/hbase/filter/ColumnPrefixFilter.java
(revision 1134434)
+++ src/main/java/org/apache/hadoop/hbase/filter/ColumnPrefixFilter.java
(working copy)
@@ -29,7 +29,7 @@
/**
* 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 @@
kv.getBuffer(), kv.getRowOffset(), kv.getRowLength(),
kv.getBuffer(),
kv.getFamilyOffset(), kv.getFamilyLength(), prefix, 0,
prefix.length);
}
-}
\ No newline at end of file
+}