Skip to content

Commit

Permalink
docs: use const in readme example
Browse files Browse the repository at this point in the history
fixes #3867
closes #3868
  • Loading branch information
mwanago authored and dougwilson committed Apr 16, 2019
1 parent b9b1b19 commit 6eda52a
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 @@ -9,8 +9,8 @@
[![Test Coverage][coveralls-image]][coveralls-url]

```js
var express = require('express')
var app = express()
const express = require('express')
const app = express()

app.get('/', function (req, res) {
res.send('Hello World')
Expand Down

0 comments on commit 6eda52a

Please sign in to comment.