Skip to content

Commit

Permalink
doc: fix code example in inspector.md
Browse files Browse the repository at this point in the history
PR-URL: #13182
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
vsemozhetbyt authored and jasnell committed May 28, 2017
1 parent 9302f51 commit c0a7c8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/api/inspector.md
Expand Up @@ -85,8 +85,8 @@ a response is received. `callback` is a function that accepts two optional
arguments - error and message-specific result. arguments - error and message-specific result.


```js ```js
session.post('Runtime.evaluate', {'expression': '2 + 2'}, session.post('Runtime.evaluate', { expression: '2 + 2' },
(error, {result}) => console.log(result.value)); (error, { result }) => console.log(result));
// Output: { type: 'number', value: 4, description: '4' } // Output: { type: 'number', value: 4, description: '4' }
``` ```


Expand Down

0 comments on commit c0a7c8e

Please sign in to comment.