Fix jsdoc code examples formatting

Some examples in the docs were not showing as code snippets,
but as regular text.
This commit is contained in:
Giustino Borzacchiello 2014-01-20 10:47:23 +01:00 committed by Miroslav Bajtoš
parent 4c83a8b50f
commit 803821e736
1 changed files with 14 additions and 10 deletions

View File

@ -58,12 +58,15 @@ The `DataSource` constructor is available from `loopback-datasource-juggler` mod
- connector: The name or instance of the connector module
- settings: An object of properties to configure the connector
var dataSource = new DataSource({
```
var dataSource = new DataSource({
connector: require('loopback-connector-mongodb'),
host: 'localhost',
port: 27017,
database: 'mydb'
});
});
```
#### connector
@ -75,10 +78,11 @@ The `connector` argument passed the DataSource constructor can be one of the fol
to 'loopback-connector-<shortName>'
* A local module under ./connectors/<connectorName> folder
var ds1 = new DataSource('memory');
var ds2 = new DataSource('loopback-connector-mongodb'));
var ds3 = new DataSource(require('loopback-connector-oracle'));
```
var ds1 = new DataSource('memory');
var ds2 = new DataSource('loopback-connector-mongodb'));
var ds3 = new DataSource(require('loopback-connector-oracle'));
```
**Note**: LoopBack provides a built-in connector named as `memory` to use in-memory
store for CRUD operations.