Skip to content

Commit

Permalink
docs: Add @SInCE where it is missing (#2793)
Browse files Browse the repository at this point in the history
  • Loading branch information
WaldoJeffers authored and CrossEye committed Mar 5, 2019
1 parent ac58c96 commit 271b044
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions source/composeWith.js
Expand Up @@ -12,6 +12,7 @@ import reverse from './reverse';
*
* @func
* @memberOf R
* @since v0.26.0
* @category Function
* @sig ((* -> *), [(y -> z), (x -> y), ..., (o -> p), ((a, b, ..., n) -> o)]) -> ((a, b, ..., n) -> z)
* @param {...Function} ...functions The functions to compose
Expand Down
1 change: 1 addition & 0 deletions source/mergeLeft.js
Expand Up @@ -9,6 +9,7 @@ import _curry2 from './internal/_curry2';
*
* @func
* @memberOf R
* @since v0.26.0
* @category Object
* @sig {k: v} -> {k: v} -> {k: v}
* @param {Object} l
Expand Down
1 change: 1 addition & 0 deletions source/mergeRight.js
Expand Up @@ -9,6 +9,7 @@ import _curry2 from './internal/_curry2';
*
* @func
* @memberOf R
* @since v0.26.0
* @category Object
* @sig {k: v} -> {k: v} -> {k: v}
* @param {Object} l
Expand Down
1 change: 1 addition & 0 deletions source/otherwise.js
Expand Up @@ -9,6 +9,7 @@ import _assertPromise from './internal/_assertPromise';
*
* @func
* @memberOf R
* @since v0.26.0
* @category Function
* @sig (e -> b) -> (Promise e a) -> (Promise e b)
* @sig (e -> (Promise f b)) -> (Promise e a) -> (Promise f b)
Expand Down
1 change: 1 addition & 0 deletions source/pipeWith.js
Expand Up @@ -15,6 +15,7 @@ import identity from './identity';
*
* @func
* @memberOf R
* @since v0.26.0
* @category Function
* @sig ((* -> *), [((a, b, ..., n) -> o), (o -> p), ..., (x -> y), (y -> z)]) -> ((a, b, ..., n) -> z)
* @param {...Function} functions
Expand Down
1 change: 1 addition & 0 deletions source/thunkify.js
Expand Up @@ -7,6 +7,7 @@ import _curry1 from './internal/_curry1';
*
* @func
* @memberOf R
* @since v0.26.0
* @category Function
* @sig ((a, b, ..., j) -> k) -> (a, b, ..., j) -> (() -> k)
* @param {Function} fn A function to wrap in a thunk
Expand Down

0 comments on commit 271b044

Please sign in to comment.