Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 42f66f6

Browse files
Fixing mispelling
1 parent e9db741 commit 42f66f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/GitHub.Api/Authentication/LoginManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ string password
281281
return auth;
282282
}
283283

284-
if (ret.IsCutom && ret.Status == "2fa")
284+
if (ret.IsCustom && ret.Status == "2fa")
285285
{
286286
keychain.SetToken(host, ret.Output[0]);
287287
await keychain.Save(host);

src/GitHub.Api/Tasks/OctorunTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,6 @@ public OctorunResult(string status, string[] output)
123123

124124
public bool IsSuccess => Status.Equals("success", StringComparison.InvariantCultureIgnoreCase);
125125
public bool IsError => Status.Equals("error", StringComparison.InvariantCultureIgnoreCase);
126-
public bool IsCutom => !IsSuccess && !IsError;
126+
public bool IsCustom => !IsSuccess && !IsError;
127127
}
128128
}

0 commit comments

Comments
 (0)