Skip to content

Commit

Permalink
maint: fix some spelling errors (#576)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
  • Loading branch information
jsoref authored Feb 22, 2024
1 parent e167700 commit fb0624e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export async function auth<T = unknown>(
switch (authOptions.type) {
case "app":
return getAppAuthentication(state);
// @ts-expect-error "oauth" is not supperted in types
// @ts-expect-error "oauth" is not supported in types
case "oauth":
state.log.warn(
// @ts-expect-error `log.warn()` expects string
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ export type AppAuthOptions = {

/**
Users SHOULD only enter repositoryIds || repositoryNames.
However, this moduke still passes both to the backend API to
However, this module still passes both to the backend API to
let the API decide how to handle the logic. We just throw the
reponse back to the client making the request.
response back to the client making the request.
**/
export type InstallationAuthOptions = {
type: "installation";
Expand Down

0 comments on commit fb0624e

Please sign in to comment.