Skip to content

Commit

Permalink
Fix Minor Typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianJSClark committed Feb 24, 2023
1 parent 858e427 commit e964362
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class ExampleService
this.dataClient = dataClient;
}

public async Task<MemberInfo> GetMyInfoAsync(string iRacingUsername, string iRacingPassword CancellationToken cancellationToken = default)
public async Task<MemberInfo> GetMyInfoAsync(string iRacingUsername, string iRacingPassword, CancellationToken cancellationToken = default)
{
dataClient.UseUsernameAndPassword(iRacingUsername, iRacingPassword);

Expand Down
2 changes: 1 addition & 1 deletion src/Aydsko.iRacingData/Package README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class ExampleService
this.dataClient = dataClient;
}

public async Task<MemberInfo> GetMyInfoAsync(string iRacingUsername, string iRacingPassword CancellationToken cancellationToken = default)
public async Task<MemberInfo> GetMyInfoAsync(string iRacingUsername, string iRacingPassword, CancellationToken cancellationToken = default)
{
dataClient.UseUsernameAndPassword(iRacingUsername, iRacingPassword);

Expand Down

0 comments on commit e964362

Please sign in to comment.