Skip to content

Commit 5ecab92

Browse files
authored
Fix comment in XmlStreamConfigurationProvider (#38084)
1 parent 510b6f5 commit 5ecab92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libraries/Microsoft.Extensions.Configuration.Xml/src/XmlStreamConfigurationProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ public class XmlStreamConfigurationProvider : StreamConfigurationProvider
2424
public XmlStreamConfigurationProvider(XmlStreamConfigurationSource source) : base(source) { }
2525

2626
/// <summary>
27-
/// Read a stream of INI values into a key/value dictionary.
27+
/// Read a stream of XML values into a key/value dictionary.
2828
/// </summary>
29-
/// <param name="stream">The stream of INI data.</param>
29+
/// <param name="stream">The stream of XML data.</param>
3030
/// <param name="decryptor">The <see cref="XmlDocumentDecryptor"/> to use to decrypt.</param>
3131
/// <returns>The <see cref="IDictionary{String, String}"/> which was read from the stream.</returns>
3232
public static IDictionary<string, string> Read(Stream stream, XmlDocumentDecryptor decryptor)

0 commit comments

Comments
 (0)