Skip to content

Commit 3db98d7

Browse files
committed
fixup! sync lockfile
1 parent 7556473 commit 3db98d7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/site/pages/en/blog/community/domain-postmortem.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ the originator of the code from knowing about its own exceptions.
2020

2121
Here's an example of how one indirectly linked modules can affect another:
2222

23-
```js displayName=a.js
23+
```js displayName="a.js"
2424
const d = require('domain').create();
2525

2626
const b = require('./b');
2727
const c = require('./c');
2828
```
2929

30-
```js displayName=b.js
30+
```js displayName="b.js"
3131
d.on('error', () => {
3232
/* silence everything */
3333
});
3434
d.enter();
3535
```
3636

37-
```js displayName=c.js
37+
```js displayName="c.js"
3838
const dep = require('some-dep');
3939
dep.method(); // Uh-oh! This method doesn't actually exist.
4040
```

0 commit comments

Comments
 (0)