Skip to content

Commit

Permalink
ARROW-9: Rename some unchanged "Drill" to "Arrow" (follow-up)
Browse files Browse the repository at this point in the history
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 <[email protected]>
Author: Hyukjin Kwon <[email protected]>

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

54a5d9f [Hyukjin Kwon] Update typo
628f35d [hyukjinkwon] Replace straggler references to Drill (follow-up)
  • Loading branch information
HyukjinKwon authored and wesm committed Mar 7, 2016
1 parent 8caa287 commit 571343b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ 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();

BufferAllocator getAllocator();

/**
* Set the initial record capacity
* @param numRecords
* @param numRecords the initial record capacity.
*/
void setInitialCapacity(int numRecords);

Expand All @@ -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();

Expand Down Expand Up @@ -198,7 +198,7 @@ interface Accessor {
}

/**
* An abstractiong that is used to write into this vector instance.
* An abstraction that is used to write into this vector instance.
*/
interface Mutator {
/**
Expand Down

0 comments on commit 571343b

Please sign in to comment.