Browse Source

Fixing a trivial js lint issue.

ali.ibrahim 8 years ago
parent
commit
49cb675057
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/api/net.md

+ 1 - 1
docs/api/net.md

@@ -152,7 +152,7 @@ error on the response object:
 
 ```javascript
 request.on('response', (response) => {
-  console.log(`STATUS: ${response.statusCode}`);
+  console.log(`STATUS: ${response.statusCode}`)
   response.on('error', (error) => {
     console.log(`ERROR: ${JSON.stringify(error)}`)
   })