Update comments to reflect code behavior (#1182)

This commit is contained in:
Justin Kotalik 2017-08-22 16:46:00 -07:00 committed by GitHub
parent e7541e99a7
commit 1ea0647ae2
1 changed files with 3 additions and 3 deletions

View File

@ -12,10 +12,10 @@ namespace Microsoft.AspNetCore.Hosting
{
/// <summary>
/// Gets or sets the name of the environment. This property is automatically set by the host to the value
/// of the "ASPNETCORE_ENVIRONMENT" environment variable.
/// of the "ASPNETCORE_ENVIRONMENT" environment variable, or "environment" as specified in any other configuration source.
/// </summary>
string EnvironmentName { get; set; }
/// <summary>
/// Gets or sets the name of the application. This property is automatically set by the host to the assembly containing
/// the application entry point.
@ -42,4 +42,4 @@ namespace Microsoft.AspNetCore.Hosting
/// </summary>
IFileProvider ContentRootFileProvider { get; set; }
}
}
}