Skip to content

Commit 5f245f1

Browse files
Changed name to #removeDuplicatedRows. Fixes #219.
1 parent f7e1e2d commit 5f245f1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/DataFrame-Tests/DataFrameTest.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3695,7 +3695,7 @@ DataFrameTest >> testRemoveColumnsWithNilsAtRowOutOfRange [
36953695
]
36963696

36973697
{ #category : #tests }
3698-
DataFrameTest >> testRemoveDuplicateRows [
3698+
DataFrameTest >> testRemoveDuplicatedRows [
36993699

37003700
|dataFrame|
37013701

src/DataFrame/DataFrame.class.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1668,7 +1668,7 @@ DataFrame >> removeColumnsWithNilsAtRowNamed: rowName [
16681668
]
16691669

16701670
{ #category : #removing }
1671-
DataFrame >> removeDuplicateRows [
1671+
DataFrame >> removeDuplicatedRows [
16721672
"Removes duplicate rows of a dataframe except the first unique row"
16731673

16741674
| numberOfRows nextRowIndex currentRow row aSet |

0 commit comments

Comments
 (0)