Merge pull request #169 from tidalcycles/fix-jsdoc

fix: jsdoc comments
This commit is contained in:
Felix Roos 2022-08-02 22:57:43 +02:00 committed by GitHub
commit 9cdb1a53f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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