Add missing 'if' in summary comment (dotnet/corefx#37136)
authorStefan <Tornhoof@users.noreply.github.com>
Wed, 24 Apr 2019 15:05:14 +0000 (17:05 +0200)
committerStephen Toub <stoub@microsoft.com>
Wed, 24 Apr 2019 15:05:14 +0000 (11:05 -0400)
Add missing 'if' in summary comment

Commit migrated from https://github.com/dotnet/corefx/commit/7a60f1e1ef6080e0f29e007ae6218043abdef3ad

src/libraries/System.Threading.Channels/src/System/Threading/Channels/ChannelOptions.cs

index a949c60..2091df3 100644 (file)
@@ -18,8 +18,8 @@ namespace System.Threading.Channels
         public bool SingleWriter { get; set; }
 
         /// <summary>
-        /// <code>true</code> readers from the channel guarantee that there will only ever be at most one read operation at a time;
-        /// <code>false</code> if no such constraint is guaranteed.
+        /// <code>true</code> if readers from the channel guarantee that there will only ever be at most one read operation
+        /// at a time; <code>false</code> if no such constraint is guaranteed.
         /// </summary>
         /// <remarks>
         /// If true, the channel may be able to optimize certain operations based on knowing about the single-reader guarantee.