From 42204e9c0bede14227f1556b8d4112e965a0b587 Mon Sep 17 00:00:00 2001 From: ryu <114303361+ryuapp@users.noreply.github.com> Date: Mon, 11 Aug 2025 16:21:12 +0900 Subject: [PATCH] chore: remove mistaken `this` --- src/content/docs/workers/runtime-apis/bindings/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/workers/runtime-apis/bindings/index.mdx b/src/content/docs/workers/runtime-apis/bindings/index.mdx index 7e27c17b05268cf..26ffb28a75abde2 100644 --- a/src/content/docs/workers/runtime-apis/bindings/index.mdx +++ b/src/content/docs/workers/runtime-apis/bindings/index.mdx @@ -103,7 +103,7 @@ Bindings are located on the `env` object, which can be accessed in several ways: ```js import { env } from "cloudflare:workers"; - console.log(`Hi, ${this.env.Name}`); + console.log(`Hi, ${env.Name}`); ``` ### Importing `env` as a global