Skip to content

Commit

Permalink
Fix typos in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed May 9, 2024
1 parent cfcf345 commit b120ab0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class AppVeyorPullRequestSystem : BasePullRequestSystem
/// Initializes a new instance of the <see cref="AppVeyorPullRequestSystem"/> class.
/// </summary>
/// <param name="context">The Cake context.</param>
/// <param name="settings">Settings for writting issues to AppVeyor.</param>
/// <param name="settings">Settings for writing issues to AppVeyor.</param>
public AppVeyorPullRequestSystem(ICakeContext context, AppVeyorBuildSettings settings)
: base(context?.Log ?? throw new ArgumentNullException(nameof(context)))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ protected override void InternalPostDiscussionThreads(IEnumerable<IIssue> issues
/// </summary>
/// <param name="rootDirectoryPath">The root path of the file, relative to the repository root.</param>
/// <param name="filePath">The file path relative to the project root.</param>
/// <param name="line">The line where the issue ocurred.</param>
/// <param name="column">The column where the issue ocurred.</param>
/// <param name="line">The line where the issue occurred.</param>
/// <param name="column">The column where the issue occurred.</param>
/// <returns>Formatted options string for the warning service message.</returns>
private static string FormatWarningOptions(DirectoryPath rootDirectoryPath, FilePath filePath, int? line, int? column)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void TestReportCreation(Action<SarifIssueReportFormatSettings> settings)
});

// Then
// Currently only checks if genertions failed or not without checking actual output.
// Currently only checks if generation failed or not without checking actual output.
result.ShouldNotBeNull();
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Issues.Sarif/SarifIssuesProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Newtonsoft.Json;

/// <summary>
/// Provider for issues in SARIF compatible formt.
/// Provider for issues in SARIF compatible format.
/// </summary>
/// <param name="log">The Cake log context.</param>
/// <param name="issueProviderSettings">Settings for the issue provider.</param>
Expand Down

0 comments on commit b120ab0

Please sign in to comment.