Skip to content

Commit 5615630

Browse files
committed
rm.
1 parent 735edad commit 5615630

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ Let't start with creating the context initialisation point of our app, well take
1515
// main.js
1616

1717
const express = require('express');
18-
const { AsyncResource } = require('async_hooks');
1918
const Context = require('node-execution-context');
2019
const UserController = require('./controllers/user');
2120
const app = express();
@@ -62,7 +61,7 @@ export class UserController {
6261
Creates for the current async resource an execution context entry identified with his asyncId.
6362
Any future processes that will be added to the async execution chain will be exposed to this context.
6463

65-
> When passing custom domain to this method, the trigger point and all of it's sub processes will be exposed to a standalone context won't effect / be effected by root context.
64+
> When passing custom domain to this method, the trigger point and all of it's sub processes will be exposed to a standalone context and won't effect / be effected by root context.
6665
6766
### update(update: object)
6867

@@ -84,7 +83,7 @@ Configures execution context settings.
8483

8584
Returns an monitoring report over the current execution map resources
8685

87-
> Before calling `monitor`, you should `configure` execution context to monitor it's nodes. by default they are kept as lean as possible.
86+
> Before calling `monitor`, you should `configure` execution context to monitor it's nodes. by default the data kept is as possible.
8887
8988
```js
9089
const Context = require('node-execution-context');

0 commit comments

Comments
 (0)