From d75a23ea4040c6679b223f4e0d5577219dae116a Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 16 Mar 2020 12:45:59 +0000 Subject: [PATCH] minor(associative): reformat docstring --- packages/associative/src/join.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/associative/src/join.ts b/packages/associative/src/join.ts index a423a887c4..4017f79340 100644 --- a/packages/associative/src/join.ts +++ b/packages/associative/src/join.ts @@ -63,12 +63,12 @@ export const join = ( }; /** - * Similar to {@link join}, computes the join between two sets of relations, - * using the given keys in `kmap` only for joining and ignoring others. - * `kmap` can also be used to translate join keys in `b` where - * needed. Else, if no renaming is desired, the values in `kmap` should - * be the same as their respective keys, e.g. `{id: "id"}`. Returns new - * set of same type as `a`. + * Similar to {@link join}, computes the join between two sets of + * relations, using the given keys in `kmap` only for joining and + * ignoring others. `kmap` can also be used to translate join keys in + * `b` where needed. Else, if no renaming is desired, the values in + * `kmap` should be the same as their respective keys, e.g. `{id: + * "id"}`. Returns new set of same type as `a`. * * @example * ```ts