Skip to content

Commit 6eda52a

Browse files
mwanagodougwilson
authored andcommitted
docs: use const in readme example
fixes #3867 closes #3868
1 parent b9b1b19 commit 6eda52a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
[![Test Coverage][coveralls-image]][coveralls-url]
1010

1111
```js
12-
var express = require('express')
13-
var app = express()
12+
const express = require('express')
13+
const app = express()
1414

1515
app.get('/', function (req, res) {
1616
res.send('Hello World')

0 commit comments

Comments
 (0)