Skip to content

Commit

Permalink
Fix a formatting build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardCooke committed Sep 1, 2024
1 parent 25a2513 commit f8cbe26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions YamlDotNet/Core/Scanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ public Token? Current
/// </summary>
/// <param name="input">The input.</param>
/// <param name="skipComments">Indicates whether comments should be ignored</param>
public Scanner(TextReader input, bool skipComments = true):
this(input, skipComments, 1024)
public Scanner(TextReader input, bool skipComments = true)
: this(input, skipComments, 1024)
{
}

Expand Down

0 comments on commit f8cbe26

Please sign in to comment.