Skip to content

Commit

Permalink
Docs: fix verifyAndFix result property name (#8903)
Browse files Browse the repository at this point in the history
  • Loading branch information
tinovyatkin authored and not-an-aardvark committed Jul 9, 2017
1 parent 1a89e1c commit 45f8cd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/developer-guide/nodejs-api.md
Expand Up @@ -167,15 +167,15 @@ Output object from this method:
```js
{
fixed: true,
text: "var foo;",
output: "var foo;",
messages: []
}
```

The information available is:

* `fixed` - True, if the code was fixed.
* `text` - Fixed code text (might be the same as input if no fixes were applied).
* `output` - Fixed code text (might be the same as input if no fixes were applied).
* `messages` - Collection of all messages for the given code (It has the same information as explained above under `verify` block).

## linter
Expand Down

0 comments on commit 45f8cd9

Please sign in to comment.