Repository: arrow
Updated Branches:
  refs/heads/master 8caa28726 -> 571343bbe


ARROW-9: Rename some unchanged "Drill" to "Arrow" (follow-up)

https://issues.apache.org/jira/browse/ARROW-9

There is a unchanged one from "Drill" to "Arrow" at `ValueVector` and minor 
typos are fixed.

Author: hyukjinkwon <gurwls...@gmail.com>
Author: Hyukjin Kwon <gurwls...@gmail.com>

Closes #18 from HyukjinKwon/ARROW-9 and squashes the following commits:

54a5d9f [Hyukjin Kwon] Update typo
628f35d [hyukjinkwon] Replace straggler references to Drill (follow-up)


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/571343bb
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/571343bb
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/571343bb

Branch: refs/heads/master
Commit: 571343bbe36f99a11ed82e475b976bbe79dfb755
Parents: 8caa287
Author: hyukjinkwon <gurwls...@gmail.com>
Authored: Mon Mar 7 14:49:27 2016 -0800
Committer: Wes McKinney <w...@apache.org>
Committed: Mon Mar 7 14:49:27 2016 -0800

----------------------------------------------------------------------
 .../src/main/java/org/apache/arrow/vector/ValueVector.java   | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/571343bb/java/vector/src/main/java/org/apache/arrow/vector/ValueVector.java
----------------------------------------------------------------------
diff --git a/java/vector/src/main/java/org/apache/arrow/vector/ValueVector.java 
b/java/vector/src/main/java/org/apache/arrow/vector/ValueVector.java
index c05f0e7..a170c59 100644
--- a/java/vector/src/main/java/org/apache/arrow/vector/ValueVector.java
+++ b/java/vector/src/main/java/org/apache/arrow/vector/ValueVector.java
@@ -63,7 +63,7 @@ public interface ValueVector extends Closeable, 
Iterable<ValueVector> {
 
   /**
    * Allocates new buffers. ValueVector implements logic to determine how much 
to allocate.
-   * @return Returns true if allocation was succesful.
+   * @return Returns true if allocation was successful.
    */
   boolean allocateNewSafe();
 
@@ -71,7 +71,7 @@ public interface ValueVector extends Closeable, 
Iterable<ValueVector> {
 
   /**
    * Set the initial record capacity
-   * @param numRecords
+   * @param numRecords the initial record capacity.
    */
   void setInitialCapacity(int numRecords);
 
@@ -87,7 +87,7 @@ public interface ValueVector extends Closeable, 
Iterable<ValueVector> {
   void close();
 
   /**
-   * Release the underlying DrillBuf and reset the ValueVector to empty.
+   * Release the underlying ArrowBuf and reset the ValueVector to empty.
    */
   void clear();
 
@@ -198,7 +198,7 @@ public interface ValueVector extends Closeable, 
Iterable<ValueVector> {
   }
 
   /**
-   * An abstractiong that is used to write into this vector instance.
+   * An abstraction that is used to write into this vector instance.
    */
   interface Mutator {
     /**

Reply via email to