From: Marcelo Trylesinski Date: Tue, 24 May 2022 05:46:19 +0000 (+0200) Subject: Add missing commas on `schemas.md` (#1647) X-Git-Tag: 0.20.1~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cf592a40e5b6a3b7dcbf45811ae7923d1c2480f8;p=thirdparty%2Fstarlette.git Add missing commas on `schemas.md` (#1647) --- diff --git a/docs/schemas.md b/docs/schemas.md index 275e7b29..fed596db 100644 --- a/docs/schemas.md +++ b/docs/schemas.md @@ -46,8 +46,8 @@ def openapi_schema(request): routes = [ - Route("/users", endpoint=list_users, methods=["GET"]) - Route("/users", endpoint=create_user, methods=["POST"]) + Route("/users", endpoint=list_users, methods=["GET"]), + Route("/users", endpoint=create_user, methods=["POST"]), Route("/schema", endpoint=openapi_schema, include_in_schema=False) ]