@@ -160,7 +160,7 @@ using Link = System.ComponentModel.DescriptionAttribute;
160160///  The specification for module initializers in the .NET runtime can be found here:
161161///  https://github.com/dotnet/runtime/blob/master/docs/design/specs/Ecma-335-Augments.md#module-initializer
162162///  </remarks 
163- [ Link ( " https://learn.microsoft.com/en-us/dotnet/api/system.runtime.compilerservices.moduleinitializerattribute" )] 
163+ // Link:  https://learn.microsoft.com/en-us/dotnet/api/system.runtime.compilerservices.moduleinitializerattribute
164164ExcludeFromCodeCoverage ]
165165[DebuggerNonUserCode ]
166166[AttributeUsage (
@@ -216,7 +216,7 @@ static partial class Polyfill
216216    ///  <returns see cref " Task" returns  
217217    ///  <exception cref " ObjectDisposedException" exception  
218218    ///  <exception cref " InvalidOperationException" exception  
219- [ Link ( " https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.flushasync#system-io-textwriter-flushasync(system-threading-cancellationtoken)" )] 
219+     // Link:  https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.flushasync#system-io-textwriter-flushasync(system-threading-cancellationtoken) 
220220public  static  Task  FlushAsync (this  TextWriter  target , CancellationToken  cancellationToken )
221221    {
222222        if  (cancellationToken .IsCancellationRequested )
@@ -236,7 +236,7 @@ static partial class Polyfill
236236    ///  StringBuilder.GetChunks() method to avoid creating the intermediate string 
237237    ///  </summary  
238238    ///  <param name " value" param  
239- [ Link ( " https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.write#system-io-textwriter-write(system-text-stringbuilder)" )] 
239+     // Link:  https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.write#system-io-textwriter-write(system-text-stringbuilder) 
240240public  static  void  Write (this  TextWriter  target , StringBuilder ? value )
241241    {
242242        if  (value  ==  null )
@@ -260,7 +260,7 @@ static partial class Polyfill
260260    ///  </summary  
261261    ///  <param name " value" param  
262262    ///  <param name " cancellationToken" param  
263- [ Link ( " https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.writeasync#system-io-textwriter-writeasync(system-readonlymemory((system-char))-system-threading-cancellationtoken)" )] 
263+     // Link:  https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.writeasync#system-io-textwriter-writeasync(system-readonlymemory((system-char))-system-threading-cancellationtoken) 
264264public  static  Task  WriteAsync (this  TextWriter  target , StringBuilder ? value , CancellationToken  cancellationToken  =  default )
265265    {
266266        if  (cancellationToken .IsCancellationRequested )
@@ -302,7 +302,7 @@ static partial class Polyfill
302302    ///  The default value is <see cref " CancellationToken.None"  
303303    ///  </param  
304304    ///  <returns returns  
305- [ Link ( " https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.writeasync#system-io-textwriter-writeasync(system-readonlymemory((system-char))-system-threading-cancellationtoken)" )] 
305+     // Link:  https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.writeasync#system-io-textwriter-writeasync(system-readonlymemory((system-char))-system-threading-cancellationtoken) 
306306public  static  ValueTask  WriteAsync (
307307        this  TextWriter  target ,
308308        ReadOnlyMemory <char > buffer ,
@@ -330,7 +330,7 @@ static partial class Polyfill
330330    ///  The default value is <see cref " CancellationToken.None"  
331331    ///  </param  
332332    ///  <returns returns  
333- [ Link ( " https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.writelineasync#system-io-textwriter-writelineasync(system-readonlymemory((system-char))-system-threading-cancellationtoken)" )] 
333+     // Link:  https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.writelineasync#system-io-textwriter-writelineasync(system-readonlymemory((system-char))-system-threading-cancellationtoken) 
334334public  static  ValueTask  WriteLineAsync (
335335        this  TextWriter  target ,
336336        ReadOnlyMemory <char > buffer ,
@@ -355,7 +355,7 @@ static partial class Polyfill
355355    ///  Writes a character span to the text stream. 
356356    ///  </summary  
357357    ///  <param name " buffer" param  
358- [ Link ( " https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.write#system-io-textwriter-write(system-readonlyspan((system-char)))" )] 
358+     // Link:  https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.write#system-io-textwriter-write(system-readonlyspan((system-char))) 
359359public  static  void  Write (
360360        this  TextWriter  target ,
361361        ReadOnlySpan <char > buffer )
@@ -378,7 +378,7 @@ static partial class Polyfill
378378    ///  Writes the text representation of a character span to the text stream, followed by a line terminator. 
379379    ///  </summary  
380380    ///  <param name " buffer" param  
381- [ Link ( " https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.writeline#system-io-textwriter-writeline(system-readonlyspan((system-char)))" )] 
381+     // Link:  https://learn.microsoft.com/en-us/dotnet/api/system.io.textwriter.writeline#system-io-textwriter-writeline(system-readonlyspan((system-char))) 
382382public  static  void  WriteLine (
383383        this  TextWriter  target ,
384384        ReadOnlySpan <char > buffer )
0 commit comments