From c9959b954122916f55d2c2da1bdb1628680f32ef Mon Sep 17 00:00:00 2001 From: Aria Minaei Date: Sat, 9 Apr 2022 15:30:20 +0200 Subject: [PATCH] More lint fixes --- packages/dataverse/src/derivations/prism/prism.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 {