From bef08d00c9cd37e9cc3e212630a380698dd2c8ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Etzlstorfer?= Date: Sun, 3 Nov 2019 10:06:17 -0800 Subject: [PATCH] chore: fix typo (#523) --- docs/getting-started.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index c7283490ed..7a059d08c8 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -17,7 +17,7 @@ On startup _Unleash_ will perform necessary migrations if needed. ```bash $ npm install unleash-server -g -$ unleash -d postgres://unleash_user:passord@localhost:5432/unleash -p 4242 +$ unleash -d postgres://unleash_user:password@localhost:5432/unleash -p 4242 Unleash started on http://localhost:4242 ``` @@ -31,7 +31,7 @@ const unleash = require('unleash-server'); unleash .start({ - databaseUrl: 'postgres://unleash_user:passord@localhost:5432/unleash', + databaseUrl: 'postgres://unleash_user:password@localhost:5432/unleash', port: 4242, }) .then(unleash => {