Fix xml doc comment for SimpleConsoleFormatterOptions.SingleLine (#42896)
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Wed, 30 Sep 2020 17:07:08 +0000 (19:07 +0200)
committerGitHub <noreply@github.com>
Wed, 30 Sep 2020 17:07:08 +0000 (19:07 +0200)
Setting it to `true` forces the single line, not `false` :)

src/libraries/Microsoft.Extensions.Logging.Console/src/SimpleConsoleFormatterOptions.cs

index 44aab1e..e824b68 100644 (file)
@@ -16,7 +16,7 @@ namespace Microsoft.Extensions.Logging.Console
         public LoggerColorBehavior ColorBehavior { get; set; }
 
         /// <summary>
-        /// When <see langword="false" />, the entire message gets logged in a single line.
+        /// When <see langword="true" />, the entire message gets logged in a single line.
         /// </summary>
         public bool SingleLine { get; set; }
     }