Skip to content

Commit f75db9c

Browse files
Corrected comment 'ascending' -> 'descending'.
1 parent 8b8c17d commit f75db9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/DataFrame/DataFrame.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2518,7 +2518,7 @@ DataFrame >> sortDescendingByAll: arrayOfColumnNames [
25182518

25192519
{ #category : #sorting }
25202520
DataFrame >> sortDescendingByRowNames [
2521-
"Sorts the rows of the data frame based on the row names in ascending order"
2521+
"Sorts the rows of the data frame based on the row names in descending order"
25222522

25232523
self sortByRowNamesUsing: [ :a :b | a >= b ]
25242524
]

0 commit comments

Comments
 (0)