grammar
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1003995 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1ec00befad
commit
9e132e73c6
|
@ -80,7 +80,7 @@ public class ArrayFieldVector<T extends FieldElement<T>> implements FieldVector<
|
||||||
/**
|
/**
|
||||||
* Construct a vector from an array, copying the input array.
|
* Construct a vector from an array, copying the input array.
|
||||||
* <p>
|
* <p>
|
||||||
* This constructor need a non-empty {@code d} array to retrieve
|
* This constructor needs a non-empty {@code d} array to retrieve
|
||||||
* the field from its first element. This implies it cannot build
|
* the field from its first element. This implies it cannot build
|
||||||
* 0 length vectors. To build vectors from any size, one should
|
* 0 length vectors. To build vectors from any size, one should
|
||||||
* use the {@link #ArrayFieldVector(Field, FieldElement[])} constructor.
|
* use the {@link #ArrayFieldVector(Field, FieldElement[])} constructor.
|
||||||
|
@ -119,7 +119,7 @@ public class ArrayFieldVector<T extends FieldElement<T>> implements FieldVector<
|
||||||
* set to <code>false</code. This will prevent the copying and improve
|
* set to <code>false</code. This will prevent the copying and improve
|
||||||
* performance as no new array will be built and no data will be copied.</p>
|
* performance as no new array will be built and no data will be copied.</p>
|
||||||
* <p>
|
* <p>
|
||||||
* This constructor need a non-empty {@code d} array to retrieve
|
* This constructor needs a non-empty {@code d} array to retrieve
|
||||||
* the field from its first element. This implies it cannot build
|
* the field from its first element. This implies it cannot build
|
||||||
* 0 length vectors. To build vectors from any size, one should
|
* 0 length vectors. To build vectors from any size, one should
|
||||||
* use the {@link #ArrayFieldVector(Field, FieldElement[], boolean)} constructor.
|
* use the {@link #ArrayFieldVector(Field, FieldElement[], boolean)} constructor.
|
||||||
|
@ -247,7 +247,7 @@ public class ArrayFieldVector<T extends FieldElement<T>> implements FieldVector<
|
||||||
/**
|
/**
|
||||||
* Construct a vector by appending one vector to another vector.
|
* Construct a vector by appending one vector to another vector.
|
||||||
* <p>
|
* <p>
|
||||||
* This constructor need at least one non-empty array to retrieve
|
* This constructor needs at least one non-empty array to retrieve
|
||||||
* the field from its first element. This implies it cannot build
|
* the field from its first element. This implies it cannot build
|
||||||
* 0 length vectors. To build vectors from any size, one should
|
* 0 length vectors. To build vectors from any size, one should
|
||||||
* use the {@link #ArrayFieldVector(Field, FieldElement[], FieldElement[])} constructor.
|
* use the {@link #ArrayFieldVector(Field, FieldElement[], FieldElement[])} constructor.
|
||||||
|
|
Loading…
Reference in New Issue