From 03548d584c698a1637c2b8b627c5d3119beb7f6e Mon Sep 17 00:00:00 2001 From: adueck Date: Wed, 22 Feb 2023 23:02:16 +0500 Subject: [PATCH] update README.md --- README.md | 2 +- src/components/src/useStickyState.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fe8dde6..b50c6cf 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![build](https://github.com/lingdocs/pashto-inflector/actions/workflows/ci.yml/badge.svg) ![build](https://github.com/lingdocs/pashto-inflector/actions/workflows/publish.yml/badge.svg) -A pashto inflection and verb conjugation engine, as well as functions and components for modifying and displaying Pashto text. +A pashto inflection, verb conjugation, and phrase-generation engine, as well as functions and components for modifying and displaying Pashto text. #### [Pashto Inflector Website/Demo](https://pashto-inflector.lingdocs.com) diff --git a/src/components/src/useStickyState.ts b/src/components/src/useStickyState.ts index cfa2c5c..59b0571 100644 --- a/src/components/src/useStickyState.ts +++ b/src/components/src/useStickyState.ts @@ -5,9 +5,9 @@ type SaveableData = string | number | object | boolean | undefined | null /** * replacement from the React useState hook that will persist the state in local storage * - * @param defaultValue The default value to use if there was nothing saved previously OR + * @param defaultValue The default value to use if there was nothing saved previously OR * a function that will take the saved value and return a modified new value to start with - * @param key a key for saving the state in locolStorage + * @param key a key for saving the state in localStorage * @returns */ export default function useStickyState(defaultValue: T | ((old: T | undefined) => T), key: string): [