fix(comment typo): (#959)

Thanks!
This commit is contained in:
Xu Jing 2020-06-08 09:33:35 -04:00 committed by GitHub
parent 519f5750b5
commit eedf369741
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ class Router:
if partial is not None:
#  Handle partial matches. These are cases where an endpoint is
# able to handle the request, but is not a preferred option.
# We use this in particular to deal with "406 Method Not Found".
# We use this in particular to deal with "405 Method Not Allowed".
scope.update(partial_scope)
await partial.handle(scope, receive, send)
return