Skip to content

Commit a05816d

Browse files
committed
[CSV] little javadoc cleanups
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/sandbox/csv/trunk@483548 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4ed7299 commit a05816d

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

src/java/org/apache/commons/csv/CSVParser.java

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ public CSVParser(InputStream input) {
118118
}
119119

120120
/**
121-
* Default strategy for the parser follows the default CSV Strategy.
121+
* CSV parser using the default {@link CSVStrategy}.
122122
*
123-
* @param input a Reader based on "csv-formatted" input
123+
* @param input a Reader containing "csv-formatted" input
124124
* @see #setStrategy()
125125
*/
126126
public CSVParser(Reader input) {
@@ -160,11 +160,9 @@ public CSVParser(Reader input, char delimiter, char encapsulator, char commentSt
160160
}
161161

162162
/**
163-
* Customized csv parser.
163+
* Customized CSV parser using the given {@link CSVStrategy}
164164
*
165-
* The parser parses according to the given CSV strategy.
166-
*
167-
* @param input a Reader based on "csv-formatted" input
165+
* @param input a Reader containing "csv-formatted" input
168166
* @param strategy the CSVStrategy used for CSV parsing
169167
*/
170168
public CSVParser(Reader input, CSVStrategy strategy) {

0 commit comments

Comments
 (0)