You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hbase.apache.org by Leif Wickland <le...@gmail.com> on 2011/06/14 18:08:18 UTC

Documentation typo patch to src/main/java/org/apache/hadoop/hbase/filter/ColumnPrefixFilter.java (s/will/with/)

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
+}

Re: Documentation typo patch to src/main/java/org/apache/hadoop/hbase/filter/ColumnPrefixFilter.java (s/will/with/)

Posted by Stack <st...@duboce.net>.
Applied. Thanks Leif.
St.Ack

On Tue, Jun 14, 2011 at 9:08 AM, Leif Wickland <le...@gmail.com> wrote:
> 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
> +}
>