Skip to content

Commit

Permalink
documentation updated
Browse files Browse the repository at this point in the history
  • Loading branch information
PunitSoniME committed Jan 12, 2024
1 parent 623db4b commit da39f40
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion example/src/hooks/useAsyncLoop/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}';
Expand Down
2 changes: 1 addition & 1 deletion example/src/hooks/useCopyToClipboard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}';
Expand Down
2 changes: 1 addition & 1 deletion example/src/hooks/useEventListener/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}';
Expand Down
2 changes: 1 addition & 1 deletion example/src/hooks/useScript/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}';
Expand Down
2 changes: 1 addition & 1 deletion example/src/hooks/useSpeech/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}';
Expand Down
2 changes: 1 addition & 1 deletion example/src/hooks/useStorage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}';
Expand Down

0 comments on commit da39f40

Please sign in to comment.