Skip to content

Commit d045a45

Browse files
committed
Clarify (hopefully) the Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1496064 13f79535-47bb-0310-9956-ffa450edef68
1 parent df4bd36 commit d045a45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ public boolean isConsistent() {
104104
}
105105

106106
/**
107-
* Checks whether a given column is mapped.
107+
* Checks whether a given column is mapped, i.e. its name has been defined to the parser.
108108
*
109109
* @param name
110110
* the name of the column to be retrieved.
111-
* @return whether a given columns is mapped.
111+
* @return whether a given column is mapped.
112112
*/
113113
public boolean isMapped(final String name) {
114114
return mapping != null ? mapping.containsKey(name) : false;

0 commit comments

Comments
 (0)