Skip to content

Commit

Permalink
Adjust readme spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
devinivy committed Nov 21, 2016
1 parent a6c7b6a commit db656c3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ server.register([Labbable.plugin], (err) => {
console.log('Server started');
});
});

});
```

Expand Down Expand Up @@ -98,7 +97,6 @@ describe('My server', () => {
expect(server.isInitialized()).to.equal(true);
done();
});

});
```

Expand Down Expand Up @@ -152,7 +150,6 @@ Glue.compose(manifest, (err, server) => {
console.log('Server started');
});
});

});
```

Expand Down Expand Up @@ -196,7 +193,6 @@ describe('My server', () => {
expect(LabbableServer.isInitialized()).to.equal(true);
done();
});

});
```

Expand All @@ -219,7 +215,7 @@ The labbable instance should be made aware of the hapi server as soon as possibl
#### `labbable.ready([options], [cb])`
- `options` - an optional object with the following,
- `immediate` - a boolean that when `true` passes along the `server` as soon as it is available to `labbable` (typically by calling `labbable.using(server)`). By default, labbable will wait until the server is both available and also initialized.
- `timeout` - a number in milliseconds, to override the `defaultTimeout` option specified in the constructor.
- `timeout` - a number in milliseconds, to override the `defaultTimeout` option specified in the constructor.
- `cb` - a callback with the signature `cb(err, srv)`,
- `err` - an error (such as a timeout).
- `srv` - the hapi server instance that has been made initialized and/or available.
Expand Down

0 comments on commit db656c3

Please sign in to comment.