Skip to content

Commit

Permalink
fix typo in example
Browse files Browse the repository at this point in the history
  • Loading branch information
mikermcneil committed Mar 31, 2017
1 parent 7d967fd commit e2403a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -285,9 +285,9 @@ each time .then() is used is a common source of hard-to-debug issues, technical
> else { return res.serverError(err); }
> }
>
> var result = JSON.parse('who0ps"thisis totally not valid js{}n');
> var thisWillNeverWork = JSON.parse('who0ps"thisis totally not valid js{}n');
>
> return res.ok(result);
> return res.json(result);
>
> }, res.serverError);
> ```
Expand Down

0 comments on commit e2403a0

Please sign in to comment.