Skip to content

Commit

Permalink
docs(README): fix defaultOptions explanation
Browse files Browse the repository at this point in the history
  • Loading branch information
twada committed Sep 2, 2014
1 parent 0b32c0f commit 91ce9d1
Showing 1 changed file with 12 additions and 15 deletions.
27 changes: 12 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,21 +147,18 @@ Output renderers to use. Output is rendered by renderers in order. You can creat
Returns default options object for createFormatter function. In other words, returns

```javascript
module.exports = function defaultOptions () {
'use strict';
return {
lineDiffThreshold: 5,
maxDepth: 1,
anonymous: 'Object',
circular: '#@Circular#',
lineSeparator: '\n',
renderers: [
'./built-in/file',
'./built-in/assertion',
'./built-in/diagram',
'./built-in/binary-expression'
]
};
{
lineDiffThreshold: 5,
maxDepth: 1,
anonymous: 'Object',
circular: '#@Circular#',
lineSeparator: '\n',
renderers: [
'./built-in/file',
'./built-in/assertion',
'./built-in/diagram',
'./built-in/binary-expression'
]
};
```

Expand Down

0 comments on commit 91ce9d1

Please sign in to comment.