From 628f35d751e0ce0ad1181692da14624a3cf5b452 Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Mon, 7 Mar 2016 16:36:54 +0900 Subject: [PATCH 1/2] Replace straggler references to Drill (follow-up) --- .../main/java/org/apache/arrow/vector/ValueVector.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 c05f0e7c50f..8309ca32ea2 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 { /** * 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 { /** * 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 { 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 @@ interface Accessor { } /** - * An abstractiong that is used to write into this vector instance. + * An abstracting that is used to write into this vector instance. */ interface Mutator { /** From 54a5d9fbb2507670f5a5afdd64ebefa6713385d0 Mon Sep 17 00:00:00 2001 From: Hyukjin Kwon Date: Tue, 8 Mar 2016 07:31:14 +0900 Subject: [PATCH 2/2] Update typo --- .../src/main/java/org/apache/arrow/vector/ValueVector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 8309ca32ea2..a170c59abd7 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 @@ -198,7 +198,7 @@ interface Accessor { } /** - * An abstracting that is used to write into this vector instance. + * An abstraction that is used to write into this vector instance. */ interface Mutator { /**