From da39f40d2132480b9c580de2487c70ca097eb501 Mon Sep 17 00:00:00 2001 From: Punit Soni Date: Fri, 12 Jan 2024 15:30:34 +0530 Subject: [PATCH] documentation updated --- example/src/hooks/useAsyncLoop/index.tsx | 2 +- example/src/hooks/useCopyToClipboard/index.tsx | 2 +- example/src/hooks/useEventListener/index.tsx | 2 +- example/src/hooks/useScript/index.tsx | 2 +- example/src/hooks/useSpeech/index.tsx | 2 +- example/src/hooks/useStorage/index.tsx | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/example/src/hooks/useAsyncLoop/index.tsx b/example/src/hooks/useAsyncLoop/index.tsx index 36ca95b..f772305 100644 --- a/example/src/hooks/useAsyncLoop/index.tsx +++ b/example/src/hooks/useAsyncLoop/index.tsx @@ -6,7 +6,7 @@ const Block = lazy(() => import('@/common/Details/Block')); const Documentation = lazy(() => import('@/common/Documentation')); const hook = 'useAsyncLoop'; -const info = 'Help you to work on async functionality.'; +const info = 'Helps you to work on async functionality.'; const usage: string = `import { ${hook} } from '${packageName}'; diff --git a/example/src/hooks/useCopyToClipboard/index.tsx b/example/src/hooks/useCopyToClipboard/index.tsx index 8ac0d14..3449d7a 100644 --- a/example/src/hooks/useCopyToClipboard/index.tsx +++ b/example/src/hooks/useCopyToClipboard/index.tsx @@ -8,7 +8,7 @@ const Block = lazy(() => import('@/common/Details/Block')); const Documentation = lazy(() => import('@/common/Documentation')); const hook = 'useCopyToClipboard'; -const info = 'Help you to copy a thing which you want'; +const info = 'Helps you to copy a thing which you want'; const usage: string = `import { ${hook} } from '${packageName}'; diff --git a/example/src/hooks/useEventListener/index.tsx b/example/src/hooks/useEventListener/index.tsx index 95f37af..cee853b 100644 --- a/example/src/hooks/useEventListener/index.tsx +++ b/example/src/hooks/useEventListener/index.tsx @@ -6,7 +6,7 @@ const Block = lazy(() => import('@/common/Details/Block')); const Documentation = lazy(() => import('@/common/Documentation')); const hook = 'useEventListener'; -const info = 'Help you to handle eventListener functionalities'; +const info = 'Helps you to handle eventListener functionalities'; const usage: string = `import { ${hook} } from '${packageName}'; diff --git a/example/src/hooks/useScript/index.tsx b/example/src/hooks/useScript/index.tsx index d28ddf4..2037ffc 100644 --- a/example/src/hooks/useScript/index.tsx +++ b/example/src/hooks/useScript/index.tsx @@ -7,7 +7,7 @@ const Block = lazy(() => import('@/common/Details/Block')); const Documentation = lazy(() => import('@/common/Documentation')); const hook = 'useScript'; -const info = 'Help you to import external javascript library'; +const info = 'Helps you to import external javascript library'; const usage: string = `import { ${hook} } from '${packageName}'; diff --git a/example/src/hooks/useSpeech/index.tsx b/example/src/hooks/useSpeech/index.tsx index 897fc79..690b3ab 100644 --- a/example/src/hooks/useSpeech/index.tsx +++ b/example/src/hooks/useSpeech/index.tsx @@ -8,7 +8,7 @@ const Block = lazy(() => import('@/common/Details/Block')); const Documentation = lazy(() => import('@/common/Documentation')); const hook = 'useSpeech'; -const info = 'Helps will help you implement speeching facility'; +const info = 'Helps you implement speeching facility'; const usage: string = `import { ${hook} } from '${packageName}'; diff --git a/example/src/hooks/useStorage/index.tsx b/example/src/hooks/useStorage/index.tsx index 17abf83..4e08dd3 100644 --- a/example/src/hooks/useStorage/index.tsx +++ b/example/src/hooks/useStorage/index.tsx @@ -9,7 +9,7 @@ const Documentation = lazy(() => import('@/common/Documentation')); const sessionStorageHook = 'useSessionStorage'; const localStorageHook = 'useLocalStorage'; -const info = 'Help you to handle sessionStorage and localStorage'; +const info = 'Helps you to handle sessionStorage and localStorage'; const usage: string = `import { ${sessionStorageHook}, ${localStorageHook} } from '${packageName}';