Improved comments AddEnvironmentVariables method

Improved the comment for the prefix parameter in the AddEnvironmentVariables method

Issue https://github.com/aspnet/Configuration/issues/488
This commit is contained in:
Miguel Pinto 2016-08-18 12:44:54 +02:00 коммит произвёл GitHub
Родитель 3a1a0f9047
Коммит 8f927ee3e8
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -26,7 +26,7 @@ namespace Microsoft.Extensions.Configuration
/// with a specified prefix.
/// </summary>
/// <param name="configurationBuilder">The <see cref="IConfigurationBuilder"/> to add to.</param>
/// <param name="prefix">The prefix that environment variable names must start with.</param>
/// <param name="prefix">The prefix that environment variable names must start with. The prefix will be removed from the environment variable names.</param>
/// <returns>The <see cref="IConfigurationBuilder"/>.</returns>
public static IConfigurationBuilder AddEnvironmentVariables(
this IConfigurationBuilder configurationBuilder,