docs: fix indentation
This commit is contained in:
parent
2de077d39f
commit
b13460e4a9
|
@ -16,7 +16,7 @@ with LDAP. If you're not, read the [guide](guide.html) first.
|
||||||
The code to create a new server looks like:
|
The code to create a new server looks like:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const server = ldap.createServer();
|
const server = ldap.createServer();
|
||||||
```
|
```
|
||||||
|
|
||||||
The full list of options is:
|
The full list of options is:
|
||||||
|
@ -71,10 +71,9 @@ available.
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
server.listen(389, '127.0.0.1', function() {
|
server.listen(389, '127.0.0.1', function() {
|
||||||
console.log('LDAP server listening at: ' + server.url);
|
console.log('LDAP server listening at: ' + server.url);
|
||||||
});
|
});
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Port and Host
|
### Port and Host
|
||||||
|
|
Loading…
Reference in New Issue