From a23a50bde4d446c3d014b1a8f1e20f50e16f209f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=B8ren=20Skov=20Eriksen?= <soer7033@gmail.com>
Date: Tue, 5 Mar 2019 10:41:04 +0100
Subject: [PATCH] Port number in statement not correct

The statement says: serve your static site on the port **5000**.  but the command was
```sh
serve -s build -l 4000
```
which serves it on port 4000
---
 docusaurus/docs/deployment.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docusaurus/docs/deployment.md b/docusaurus/docs/deployment.md
index 7260b6006..3d269ed3e 100644
--- a/docusaurus/docs/deployment.md
+++ b/docusaurus/docs/deployment.md
@@ -18,7 +18,7 @@ serve -s build
 The last command shown above will serve your static site on the port **5000**. Like many of [serve](https://github.com/zeit/serve)’s internal settings, the port can be adjusted using the `-l` or `--listen` flags:
 
 ```sh
-serve -s build -l 4000
+serve -s build -l 5000
 ```
 
 Run this command to get a full list of the options available:
-- 
GitLab