From da826ba750e47aea8fc1b959693a895642d4197e Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 14 Jul 2021 03:27:10 -0700 Subject: [PATCH] fix: fix code display in release blog Fixes: https://github.com/nodejs/nodejs.org/issues/3976 --- locale/en/blog/release/v16.5.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale/en/blog/release/v16.5.0.md b/locale/en/blog/release/v16.5.0.md index 7489fae956ec..8035cb372b4f 100644 --- a/locale/en/blog/release/v16.5.0.md +++ b/locale/en/blog/release/v16.5.0.md @@ -18,7 +18,7 @@ Node.js now exposes an experimental implementation of the While it is experimental, the API is not exposed on the global object and is only accessible using the new `stream/web` core module: -```mjs +```js import { ReadableStream, WritableStream } from 'stream/web'; // Or from 'node:stream/web' ```