Skip to content

Commit ba3bfa2

Browse files
committed
Updated javadoc for RowFactory.
1 parent c4ae1c5 commit ba3bfa2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/catalyst/src/main/java/org/apache/spark/sql/RowFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
public class RowFactory {
2626

2727
/**
28-
* Create a {@link Row} from an array of values. Position i in the array becomes position i
29-
* in the created {@link Row} object.
28+
* Create a {@link Row} from the given arguments. Position i in the argument list becomes
29+
* position i in the created {@link Row} object.
3030
*/
3131
public static Row create(Object ... values) {
3232
return new GenericRow(values);

0 commit comments

Comments
 (0)