diff --git a/packages/dataverse/src/derivations/prism/prism.ts b/packages/dataverse/src/derivations/prism/prism.ts index 4a19b38..bd5a8ac 100644 --- a/packages/dataverse/src/derivations/prism/prism.ts +++ b/packages/dataverse/src/derivations/prism/prism.ts @@ -201,9 +201,9 @@ function ref(key: string, initialValue: T): IRef { /** * An effect hook, similar to react's `useEffect()`. * - * @param key: the key for the effect. Should be uniqe inside of the prism. - * @param cb: the callback function. Optionally returns a cleanup function. - * @param deps?: the dependency array + * @param key - the key for the effect. Should be uniqe inside of the prism. + * @param cb - the callback function. Optionally returns a cleanup function. + * @param deps - the dependency array * */ function effect(key: string, cb: () => () => void, deps?: unknown[]): void {