diff --git a/packages/hoppscotch-cli/src/utils/collections.ts b/packages/hoppscotch-cli/src/utils/collections.ts index e66ce5a44..c4708c817 100644 --- a/packages/hoppscotch-cli/src/utils/collections.ts +++ b/packages/hoppscotch-cli/src/utils/collections.ts @@ -131,7 +131,7 @@ const getCollectionStack = (collections: HoppCollection[]): CollectionStack[] => * path of each request within collection-json file, failed-tests-report, errors, * total execution duration for requests, pre-request-scripts, test-scripts. * @returns True, if collection runner executed without any errors or failed test-cases. - * False, if errors occured or test-cases failed. + * False, if errors occurred or test-cases failed. */ export const collectionsRunnerResult = ( requestsReport: RequestReport[] diff --git a/packages/hoppscotch-cli/src/utils/display.ts b/packages/hoppscotch-cli/src/utils/display.ts index 14f6c833e..49620e4b1 100644 --- a/packages/hoppscotch-cli/src/utils/display.ts +++ b/packages/hoppscotch-cli/src/utils/display.ts @@ -112,7 +112,7 @@ export const printTestsMetrics = (testsMetrics: TestMetrics) => { /** * Prints details of each reported error for a request with error code. - * @param path Request's path in collection for which errors occured. + * @param path Request's path in collection for which errors occurred. * @param errorsReport List of errors reported. */ export const printErrorsReport = ( diff --git a/packages/hoppscotch-common/src/composables/auth.ts b/packages/hoppscotch-common/src/composables/auth.ts index 54eebbacc..247d6e1e2 100644 --- a/packages/hoppscotch-common/src/composables/auth.ts +++ b/packages/hoppscotch-common/src/composables/auth.ts @@ -39,7 +39,7 @@ export function onLoggedIn(exec: (user: HoppUser) => void) { * the auth system. * * NOTE: Unlike `onLoggedIn` for which the callback will be called once on mount with the current state, - * here the callback will only be called on authentication event occurances. + * here the callback will only be called on authentication event occurrences. * You might want to check the auth state from an `onMounted` hook or something * if you want to access the initial state * diff --git a/packages/hoppscotch-common/src/helpers/functional/record.ts b/packages/hoppscotch-common/src/helpers/functional/record.ts index c647d0b0a..9529c3a26 100644 --- a/packages/hoppscotch-common/src/helpers/functional/record.ts +++ b/packages/hoppscotch-common/src/helpers/functional/record.ts @@ -1,10 +1,10 @@ /** * Converts an array of key-value tuples (for e.g ["key", "value"]), into a record. * (for eg. output -> { "key": "value" }) - * NOTE: This function will discard duplicate key occurances and only keep the last occurance. If you do not want that behaviour, + * NOTE: This function will discard duplicate key occurrences and only keep the last occurrence. If you do not want that behaviour, * use `tupleWithSamesKeysToRecord`. * @param tuples Array of tuples ([key, value]) - * @returns A record with value corresponding to the last occurance of that key + * @returns A record with value corresponding to the last occurrence of that key */ export const tupleToRecord = < KeyType extends string | number | symbol,