Skip to content

Commit bd8dacb

Browse files
committed
Slightly better concat docstring
1 parent 545ea04 commit bd8dacb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/tech/v3/dataset/base.clj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -523,9 +523,9 @@
523523

524524

525525
(defn group-by
526-
"Produce a map of key-fn-value->dataset. The argument to key-fn
526+
"Produce a map of key-fn-value->dataset. The argument to key-fn
527527
is a map of colname->column-value representing a row in dataset.
528-
Each dataset in the resulting map contains all and only rows
528+
Each dataset in the resulting map contains all and only rows
529529
that produce the same key-fn-value.
530530
531531
Options - options are passed into dtype arggroup:
@@ -741,8 +741,8 @@
741741

742742

743743
(defn concat
744-
"Concatenate datasets in place using a copying-concatenation.
745-
See also concat-inplace as it may be more efficient for your use case if you have
744+
"Concatenate datasets using a copying-concatenation.
745+
See also [[concat-inplace]] as it may be more efficient for your use case if you have
746746
a small number (like less than 3) of datasets."
747747
([dataset & datasets]
748748
(apply concat-copying dataset datasets))

0 commit comments

Comments
 (0)