1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-23 00:22:19 +01:00

Fix typo in sample (#917)

Fix import typo in sample
This commit is contained in:
PhakornKiong 2021-08-19 15:47:40 +08:00 committed by GitHub
parent 743ff779e5
commit ecba16cf50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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. 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 ```js
const unleash = require('express'); const express = require('express');
const unleash = require('unleash-server'); const unleash = require('unleash-server');
const app = express(); const app = express();