Minor typos (#25140)

This commit is contained in:
ar0311 2020-08-25 08:51:09 +10:00 committed by GitHub
parent faf1d80af1
commit f2c3c11a2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ namespace ComponentsWebAssembly_CSharp.Server.Controllers
private readonly ILogger<WeatherForecastController> _logger;
// The Web API will only accept tokens 1) for users, and 2) having the access_as_user scope for this API
// The Web API will only accept tokens 1) for users, and 2) having the api-scope scope for this API
static readonly string[] scopeRequiredByApi = new string[] { "api-scope" };
#if (GenerateApi)
@ -75,7 +75,7 @@ namespace ComponentsWebAssembly_CSharp.Server.Controllers
{
_logger = logger;
_graphServiceClient = graphServiceClient;
}
}
[HttpGet]
public async Task<IEnumerable<WeatherForecast>> Get()