Skip to content

Commit

Permalink
Fix examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Jul 11, 2020
1 parent 10f58cf commit 30fddc7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Cake.Issues/Aliases.ReadIssues.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@ public static IEnumerable<IIssue> ReadIssues(
/// <param name="settings">The settings.</param>
/// <returns>Issues reported by issue provider.</returns>
/// <example>
/// <para>Read issues reported by JetBrains inspect code and format comments in Markdown:</para>
/// <para>Read issues reported by JetBrains inspect code and set run information:</para>
/// <code>
/// <![CDATA[
/// var settings =
/// new ReadIssuesSettings(@"c:\repo")
/// {
/// Format = IssueCommentFormat.Markdown
/// Run = "My run"
/// };
///
/// var issues =
Expand Down Expand Up @@ -142,13 +142,13 @@ public static IEnumerable<IIssue> ReadIssues(
/// <returns>Issues reported by all issue providers.</returns>
/// <example>
/// <para>Read issues reported as MsBuild warnings and issues reported by JetBrains inspect code
/// with comments formatted as Markdown:</para>
/// and set run information:</para>
/// <code>
/// <![CDATA[
/// var settings =
/// new ReadIssuesSettings(@"c:\repo")
/// {
/// Format = IssueCommentFormat.Markdown
/// Run = "My run"
/// };
///
/// var issues =
Expand Down

0 comments on commit 30fddc7

Please sign in to comment.