fix: jsdoc comments

This commit is contained in:
Felix Roos 2022-08-02 22:56:04 +02:00
parent fcebde5abd
commit f5efa18e96

View file

@ -138,7 +138,7 @@ export const __chooseWith = (pat, xs) => {
* pattern of numbers, which should be in the range of 0..1 * pattern of numbers, which should be in the range of 0..1
* @param {Pattern} pat * @param {Pattern} pat
* @param {*} xs * @param {*} xs
* @returns * @returns {Pattern}
*/ */
export const chooseWith = (pat, xs) => { export const chooseWith = (pat, xs) => {
return __chooseWith(pat, xs).outerJoin(); return __chooseWith(pat, xs).outerJoin();
@ -149,7 +149,7 @@ export const chooseWith = (pat, xs) => {
* than the pattern you're using to choose with. * than the pattern you're using to choose with.
* @param {Pattern} pat * @param {Pattern} pat
* @param {*} xs * @param {*} xs
* @returns * @returns {Pattern}
*/ */
export const chooseInWith = (pat, xs) => { export const chooseInWith = (pat, xs) => {
return __chooseWith(pat, xs).innerJoin(); return __chooseWith(pat, xs).innerJoin();