Fix typo in IConfigurationBuilder XML comment

Change the word "configuation" to "configuration".
This commit is contained in:
Simon Wendel 2017-03-29 17:41:10 +02:00 коммит произвёл GitHub
Родитель 1e0d814221
Коммит 7715691f74
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -17,7 +17,7 @@ namespace Microsoft.Extensions.Configuration
Dictionary<string, object> Properties { get; } Dictionary<string, object> Properties { get; }
/// <summary> /// <summary>
/// Gets the sources used to obtain configuation values /// Gets the sources used to obtain configuration values
/// </summary> /// </summary>
IEnumerable<IConfigurationSource> Sources { get; } IEnumerable<IConfigurationSource> Sources { get; }
@ -35,4 +35,4 @@ namespace Microsoft.Extensions.Configuration
/// <returns>An <see cref="IConfigurationRoot"/> with keys and values from the registered sources.</returns> /// <returns>An <see cref="IConfigurationRoot"/> with keys and values from the registered sources.</returns>
IConfigurationRoot Build(); IConfigurationRoot Build();
} }
} }