From 7781cc0936a7128865ae8065c145ff6b6f377e42 Mon Sep 17 00:00:00 2001 From: Forest Monsen Date: Wed, 27 Nov 2019 11:37:19 -0800 Subject: [PATCH] :pencil2: Fix protocol separator typo (#647) --- docs/src/cors/tutorial001.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/cors/tutorial001.py b/docs/src/cors/tutorial001.py index 4ec8d0188..b0a581d2e 100644 --- a/docs/src/cors/tutorial001.py +++ b/docs/src/cors/tutorial001.py @@ -6,8 +6,8 @@ app = FastAPI() origins = [ "http://localhost.tiangolo.com", "https://localhost.tiangolo.com", - "http:localhost", - "http:localhost:8080", + "http://localhost", + "http://localhost:8080", ] app.add_middleware(