diff --git a/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/InterpolatedStringHandlerArgumentAttribute.cs b/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/InterpolatedStringHandlerArgumentAttribute.cs index 1d55ae41ec0f55..f9bbe890ca325e 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/InterpolatedStringHandlerArgumentAttribute.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/InterpolatedStringHandlerArgumentAttribute.cs @@ -9,16 +9,16 @@ public sealed class InterpolatedStringHandlerArgumentAttribute : Attribute { /// Initializes a new instance of the class. /// The name of the argument that should be passed to the handler. - /// may be used as the name of the receiver in an instance method. + /// The empty string may be used as the name of the receiver in an instance method. public InterpolatedStringHandlerArgumentAttribute(string argument) => Arguments = new string[] { argument }; /// Initializes a new instance of the class. /// The names of the arguments that should be passed to the handler. - /// may be used as the name of the receiver in an instance method. + /// The empty string may be used as the name of the receiver in an instance method. public InterpolatedStringHandlerArgumentAttribute(params string[] arguments) => Arguments = arguments; /// Gets the names of the arguments that should be passed to the handler. - /// may be used as the name of the receiver in an instance method. + /// The empty string may be used as the name of the receiver in an instance method. public string[] Arguments { get; } } }