From ecba16cf50bdcff6f8f1f7e6f026d188b77d1027 Mon Sep 17 00:00:00 2001 From: PhakornKiong Date: Thu, 19 Aug 2021 15:47:40 +0800 Subject: [PATCH] Fix typo in sample (#917) Fix import typo in sample --- websitev2/docs/deploy/configuring-unleash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websitev2/docs/deploy/configuring-unleash.md b/websitev2/docs/deploy/configuring-unleash.md index 2d50a46b82..95f83a431b 100644 --- a/websitev2/docs/deploy/configuring-unleash.md +++ b/websitev2/docs/deploy/configuring-unleash.md @@ -122,7 +122,7 @@ unleash.start(unleashOptions); If you're using Unleash as part of a larger express app, you can disable the automatic server start by calling `server.create`. It takes the same options as `server.start`, but will not begin listening for connections. ```js -const unleash = require('express'); +const express = require('express'); const unleash = require('unleash-server'); const app = express();