From: Stefan Date: Wed, 24 Apr 2019 15:05:14 +0000 (+0200) Subject: Add missing 'if' in summary comment (dotnet/corefx#37136) X-Git-Tag: submit/tizen/20210909.063632~11031^2~1788 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eccc85ddc23e0bc8bcbfdf9bf4ce865f5b77bd62;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Add missing 'if' in summary comment (dotnet/corefx#37136) Add missing 'if' in summary comment Commit migrated from https://github.com/dotnet/corefx/commit/7a60f1e1ef6080e0f29e007ae6218043abdef3ad --- diff --git a/src/libraries/System.Threading.Channels/src/System/Threading/Channels/ChannelOptions.cs b/src/libraries/System.Threading.Channels/src/System/Threading/Channels/ChannelOptions.cs index a949c60..2091df3 100644 --- a/src/libraries/System.Threading.Channels/src/System/Threading/Channels/ChannelOptions.cs +++ b/src/libraries/System.Threading.Channels/src/System/Threading/Channels/ChannelOptions.cs @@ -18,8 +18,8 @@ namespace System.Threading.Channels public bool SingleWriter { get; set; } /// - /// true readers from the channel guarantee that there will only ever be at most one read operation at a time; - /// false if no such constraint is guaranteed. + /// true if readers from the channel guarantee that there will only ever be at most one read operation + /// at a time; false if no such constraint is guaranteed. /// /// /// If true, the channel may be able to optimize certain operations based on knowing about the single-reader guarantee.