diff --git a/duplicates/duplicates.nu b/duplicates/duplicates.nu index 77b8dae..4d08865 100644 --- a/duplicates/duplicates.nu +++ b/duplicates/duplicates.nu @@ -1,7 +1,7 @@ # duplicates returns the rows that correspond to duplicates of the given column. def duplicates [ -column: string # Column to look duplicates at ---count(-c) # set it to display the number of times the value is repeated. + column: string # Column to look duplicates at + --count(-c) # set it to display the number of times the value is repeated. ] { group-by $column | pivot |