Skip to content

Commit

Permalink
simplify examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mikermcneil authored May 2, 2020
1 parent f577065 commit c21318d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ setTimeout(function (){
// And since we aren't using try...catch, it will crash the process.
JSON.parse('who0ps"thisis totally not valid js{}n');

return res.ok();
//

}, 50);
```
Expand Down Expand Up @@ -354,7 +354,7 @@ setTimeout(function (){
JSON.parse('who0ps"thisis totally not valid js{}n');
} catch (e) { return res.serverError(e); }

return res.ok();
//

}, 50);
```
Expand Down

0 comments on commit c21318d

Please sign in to comment.