Skip to content

Commit 2d43b63

Browse files
committed
chore: fix some typos in comments
Signed-off-by: alongdate <alongyear@outlook.com>
1 parent 883f907 commit 2d43b63

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/insomnia-sdk/src/objects/auth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export interface OAuth2Param {
106106
key: string;
107107
value: string;
108108
enabled: boolean;
109-
send_as: string; // it follows exising naming
109+
send_as: string; // it follows existing naming
110110
}
111111

112112
export interface OAuth2Options {

packages/insomnia-sdk/src/objects/cookies.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ export function mergeCookieJar(
338338
): InsomniaCookieJar {
339339
const cookiesWithId = updatedCookieJar.cookies.map((cookie): InsomniaCookie => {
340340
if (!cookie.id) {
341-
// this follows the genration apporach in the `cookie-list.tsx`
341+
// this follows the generation approach in the `cookie-list.tsx`
342342
cookie.id = uuidv4();
343343
}
344344
return cookie as InsomniaCookie;

packages/insomnia/src/sync/vcs/vcs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ export class VCS {
536536
for (const key of Object.keys(stage)) {
537537
const entry = stage[key];
538538

539-
// @ts-expect-error -- TSCONVERSION find out where this is coming from from the Stage union
539+
// @ts-expect-error -- TSCONVERSION find out where this is coming from the Stage union
540540
if (entry.deleted) {
541541
continue;
542542
}

0 commit comments

Comments
 (0)