Skip to content

Commit 0935c16

Browse files
authored
docs(readme): use node: prefix for builtins in examples (#253)
1 parent fe8dd54 commit 0935c16

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
@@ -127,8 +127,8 @@ await app.ready() // needs to be placed after awsLambdaFastify call because of t
127127

128128
```js
129129
import awsLambdaFastify from '@fastify/aws-lambda'
130-
import { promisify } from 'util'
131-
import stream from 'stream'
130+
import { promisify } from 'node:util'
131+
import stream from 'node:stream'
132132
import app from './app.js'
133133

134134
const pipeline = promisify(stream.pipeline)

0 commit comments

Comments
 (0)