Skip to content

Commit 6bfd307

Browse files
authored
docs(signal): fix jsdoc description (#2551)
1 parent 39f2615 commit 6bfd307

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/solid/src/reactive/signal.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ export interface OnOptions {
950950
* });
951951
* ```
952952
*
953-
* @description https://docs.solidjs.com/reference/reactive-utilities/on
953+
* @description https://docs.solidjs.com/reference/reactive-utilities/on-util
954954
*/
955955
export function on<S, Next extends Prev, Prev = Next>(
956956
deps: AccessorArray<S> | Accessor<S>,
@@ -1778,7 +1778,7 @@ type TODO = any;
17781778
*
17791779
* * If the error is thrown again inside the error handler, it will trigger the next available parent handler
17801780
*
1781-
* @description https://www.solidjs.com/docs/latest/api#onerror | https://docs.solidjs.com/reference/reactive-utilities/catch-error
1781+
* @description https://docs.solidjs.com/reference/reactive-utilities/catch-error
17821782
*/
17831783
export function onError(fn: (err: Error) => void): void {
17841784
ERROR || (ERROR = Symbol("error"));

0 commit comments

Comments
 (0)