Skip to content

Commit 9edffa7

Browse files
committed
docs: fix typos
1 parent 4d14c82 commit 9edffa7

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
@@ -98,7 +98,7 @@ If your Koa or Express server is properly configured, the `protocol` property of
9898
## Example
9999

100100
```js
101-
var http = require('http')
101+
var http = require('http')
102102
var Cookies = require('cookies')
103103

104104
// Optionally define keys to sign cookie values
@@ -120,7 +120,7 @@ var server = http.createServer(function (req, res) {
120120
res.end('Welcome, first time visitor!')
121121
} else {
122122
res.setHeader('Content-Type', 'text/plain')
123-
res.end('Welcome back! Nothing much changed since you last visit at ' + lastVisit + '.')
123+
res.end('Welcome back! Nothing much changed since your last visit at ' + lastVisit + '.')
124124
}
125125
})
126126

0 commit comments

Comments
 (0)