From 2dcbb1375c7dfef3cc720fa287f419244ec4f8b5 Mon Sep 17 00:00:00 2001 From: Asday Date: Sun, 17 May 2020 11:44:30 +0100 Subject: [PATCH] Fix typo. (#676) --- docs/deployment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deployment.md b/docs/deployment.md index d07e64177..d2e94b7ea 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -255,7 +255,7 @@ To run uvicorn with https, a certificate and a private key are required. The recommended way to get them is using [Let's Encrypt][letsencrypt]. For local development with https, it's possible to use [mkcert][mkcert] -to generate a valid certificat and private key. +to generate a valid certificate and private key. ```bash $ uvicorn example:app --port 5000 --ssl-keyfile=./key.pem --ssl-certfile=./cert.pem