From 314fa50fcb6877c97c9d2b714a80a377c4f40fe3 Mon Sep 17 00:00:00 2001 From: Jonas Gierer Date: Tue, 19 Feb 2019 12:07:31 +0100 Subject: [PATCH] Fix JS API snippet --- text/0000-graphql-api-server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/0000-graphql-api-server.md b/text/0000-graphql-api-server.md index fc39f5d..c02c469 100644 --- a/text/0000-graphql-api-server.md +++ b/text/0000-graphql-api-server.md @@ -67,7 +67,7 @@ There should also be sensible defaults, such as: ```js apiServer({ - port: `process.env.PORT || 8080`, + port: process.env.PORT || `8080`, host: `0.0.0.0` }); ```