Skip to content

Commit

Permalink
minor(associative): reformat docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Mar 16, 2020
1 parent 1c5c46f commit d75a23e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/associative/src/join.ts
Expand Up @@ -63,12 +63,12 @@ export const join = <A, B>(
};

/**
* 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
Expand Down

0 comments on commit d75a23e

Please sign in to comment.