Skip to content

Commit a718ec3

Browse files
author
Patrick Acioli
committed
docs(recipes): remove duplicates occurrence of 'and' word
1 parent e3fe78f commit a718ec3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/recipes/async-local-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class AppModule implements NestModule {
5555
const store = {
5656
userId: req.headers['x-user-id'],
5757
};
58-
// and and pass the "next" function as callback
58+
// and pass the "next" function as callback
5959
// to the "als.run" method together with the store.
6060
als.run(store, () => next());
6161
})
@@ -85,7 +85,7 @@ export class AppModule {
8585
const store = {
8686
userId: req.headers['x-user-id'],
8787
};
88-
// and and pass the "next" function as callback
88+
// and pass the "next" function as callback
8989
// to the "als.run" method together with the store.
9090
als.run(store, () => next());
9191
})

0 commit comments

Comments
 (0)