From c121cb2c405a68bf95deefadab91d258c7162e99 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Fri, 17 May 2019 15:44:32 +0000 Subject: [PATCH] Fix typo in api schema generation example --- docs/schemas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/schemas.md b/docs/schemas.md index 163ca1ca..5f0a2fb3 100644 --- a/docs/schemas.md +++ b/docs/schemas.md @@ -87,7 +87,7 @@ if __name__ == '__main__': if sys.argv[-1] == "run": uvicorn.run(app, host='0.0.0.0', port=8000) - elif sys.arvg[-1] == "schema": + elif sys.argv[-1] == "schema": schema = schemas.get_schema(routes=app.routes) print(yaml.dump(schema, default_flow_style=False)) ```