diff --git a/CHANGELOG.md b/CHANGELOG.md index 698a71d..af9c384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -108,7 +108,7 @@ - Resolve progress bar when navigating back from external page - Fixed the TopLoader for anchor url having other domain name -- Moved histry.pushState function outside the MouseEvent, it was triggering for every mouse click +- Moved history.pushState function outside the MouseEvent, it was triggering for every mouse click - Fixed TopLoader getting stuck on popstate events - Fixed the use of rest params and passing its type as any - Fixed for all Special Schemes, TopLoader will not run on special schemes now onwards diff --git a/src/index.tsx b/src/index.tsx index 46b5f50..dfe971c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -27,7 +27,7 @@ export type NextTopLoaderProps = { */ initialPosition?: number; /** - * The increament delay speed in milliseconds. + * The increment delay speed in milliseconds. * @default 200 */ crawlSpeed?: number; @@ -37,7 +37,7 @@ export type NextTopLoaderProps = { */ height?: number; /** - * Auto increamenting behaviour for the TopLoader. + * Auto incrementing behaviour for the TopLoader. * @default true */ crawl?: boolean;