Skip to content

Commit b9fcad8

Browse files
authored
chore: fix typos (#1066)
1 parent a698c81 commit b9fcad8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

HISTORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ unpublished
171171
- Improve error message when `expires` is not a `Date`
172172
- perf: enable strict mode
173173
- perf: use for loop in parse
174-
- perf: use string concatination for serialization
174+
- perf: use string concatenation for serialization
175175
* deps: parseurl@~1.3.1
176176
- perf: enable strict mode
177177
* deps: uid-safe@~2.1.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ With this enabled, the session identifier cookie will expire in
269269
[`maxAge`](#cookiemaxage) since the last response was sent instead of in
270270
[`maxAge`](#cookiemaxage) since the session was last modified by the server.
271271

272-
This is typically used in conjuction with short, non-session-length
272+
This is typically used in conjunction with short, non-session-length
273273
[`maxAge`](#cookiemaxage) values to provide a quick timeout of the session data
274274
with reduced potential of it occurring during on going server interactions.
275275

@@ -773,7 +773,7 @@ a [variety of storage types](https://www.npmjs.com/package/cache-manager#store-e
773773
[express-session-level-url]: https://www.npmjs.com/package/express-session-level
774774
[express-session-level-image]: https://badgen.net/github/stars/tgohn/express-session-level?label=%E2%98%85
775775

776-
[![][express-session-rsdb-image] express-session-rsdb][express-session-rsdb-url] Session store based on Rocket-Store: A very simple, super fast and yet powerfull, flat file database.
776+
[![][express-session-rsdb-image] express-session-rsdb][express-session-rsdb-url] Session store based on Rocket-Store: A very simple, super fast and yet powerful, flat file database.
777777

778778
[express-session-rsdb-url]: https://www.npmjs.com/package/express-session-rsdb
779779
[express-session-rsdb-image]: https://badgen.net/github/stars/paragi/express-session-rsdb?label=%E2%98%85

scripts/version-history.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if (!MD_HEADER_REGEXP.test(historyFileLines[1])) {
1616
}
1717

1818
if (!VERSION_PLACEHOLDER_REGEXP.test(historyFileLines[0])) {
19-
console.error('Missing placegolder version in HISTORY.md')
19+
console.error('Missing placeholder version in HISTORY.md')
2020
process.exit(1)
2121
}
2222

test/session.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1710,7 +1710,7 @@ describe('session()', function(){
17101710
})
17111711
})
17121712

1713-
it('should not override an overriden `reload` in case of errors', function (done) {
1713+
it('should not override an overridden `reload` in case of errors', function (done) {
17141714
var store = new session.MemoryStore()
17151715
var server = createServer({ store: store, resave: false }, function (req, res) {
17161716
if (req.url === '/') {

0 commit comments

Comments
 (0)