Skip to content

Commit

Permalink
fix: convert @internal comment to JSDoc (#3932)
Browse files Browse the repository at this point in the history
`@internal` and similar tags are only parsed in JSDoc.
  • Loading branch information
mprobst authored and benlesh committed Jul 19, 2018
1 parent b3f3f09 commit f8a9d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/util/pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function pipe<T, R>(...fns: Array<UnaryFunction<T, R>>): UnaryFunction<T,
return pipeFromArray(fns);
}

/* @internal */
/** @internal */
export function pipeFromArray<T, R>(fns: Array<UnaryFunction<T, R>>): UnaryFunction<T, R> {
if (!fns) {
return noop as UnaryFunction<any, any>;
Expand Down

0 comments on commit f8a9d6e

Please sign in to comment.