From 3cb2e41be374bbc851b09784825ffb2191abc138 Mon Sep 17 00:00:00 2001 From: Amit Portnoy <1131991+amitport@users.noreply.github.com> Date: Mon, 18 Jun 2018 08:14:52 +0300 Subject: [PATCH] remove extra '/' from docs the url is incorrect: example.com//.well-known/apollo/server-health --- docs/source/whats-new.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/whats-new.md b/docs/source/whats-new.md index 1b6ce03b2a2..7446bfb283f 100644 --- a/docs/source/whats-new.md +++ b/docs/source/whats-new.md @@ -136,7 +136,7 @@ const server = new ApolloServer({ server.listen().then(({ url }) => { console.log(`🚀 Server ready at ${url}`); - console.log(`Try your health check at: ${url}/.well-known/apollo/server-health`); + console.log(`Try your health check at: ${url}.well-known/apollo/server-health`); }); ```