Skip to content

Commit 08f02a0

Browse files
committed
Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1462086 13f79535-47bb-0310-9956-ffa450edef68
1 parent 83ad716 commit 08f02a0

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/main/java/org/apache/commons/csv/CSVRecord.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,10 @@ public class CSVRecord implements Serializable, Iterable<String> {
5555

5656
/**
5757
* Returns a value by index.
58-
*
58+
*
5959
* @param i
60-
* the index of the column retrieved
60+
* a column index (0-based)
61+
* @return the String at the given index
6162
*/
6263
public String get(final int i) {
6364
return values[i];

0 commit comments

Comments
 (0)