From 6ddd0523b0887bd24c7a9dd58f965560b49622f8 Mon Sep 17 00:00:00 2001 From: Jeff Triplett Date: Wed, 13 Nov 2019 12:56:47 -0600 Subject: [PATCH] :pencil: Fixes example typo in README (#717) Thanks! --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ed526a8..c9da5e48 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ routes = [ Route("/", endpoint=homepage) ] -app = Starlette(debug=True, routes=route) +app = Starlette(debug=True, routes=routes) ``` Then run the application using Uvicorn: