Skip to content

Commit

Permalink
Fix doc in LogWriter
Browse files Browse the repository at this point in the history
  • Loading branch information
Deadpikle committed Jun 25, 2024
1 parent e2ac4ca commit e0f7791
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NetSparkle/LogWriter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public LogWriter()
/// LogWriter constructor that takes a bool to determine
/// the value for printDiagnosticToConsole
/// </summary>
/// <param name="printDiagnosticToConsole">False to print to <seealso cref="Debug.WriteLine(string)"/>;
/// <param name="printDiagnosticToConsole">False to print to <seealso cref="Trace.WriteLine(string)"/>;
/// true to print to <seealso cref="Console.WriteLine(string)"/></param>
public LogWriter(bool printDiagnosticToConsole)
{
Expand All @@ -44,7 +44,7 @@ public LogWriter(bool printDiagnosticToConsole)

/// <summary>
/// True if this class should print to <seealso cref="Console.WriteLine(string)"/>;
/// false if this object should print to <seealso cref="Debug.WriteLine(string)"/>.
/// false if this object should print to <seealso cref="Trace.WriteLine(string)"/>.
/// Defaults to false.
/// </summary>
public bool PrintDiagnosticToConsole { get; set; }
Expand Down

0 comments on commit e0f7791

Please sign in to comment.