Skip to content

Commit 565d7e3

Browse files
authored
chore: remove mistaken this (#24292)
1 parent 82e2257 commit 565d7e3

File tree

1 file changed

+1
-1
lines changed
  • src/content/docs/workers/runtime-apis/bindings

1 file changed

+1
-1
lines changed

src/content/docs/workers/runtime-apis/bindings/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Bindings are located on the `env` object, which can be accessed in several ways:
104104

105105
```js
106106
import { env } from "cloudflare:workers";
107-
console.log(`Hi, ${this.env.Name}`);
107+
console.log(`Hi, ${env.Name}`);
108108
```
109109

110110
### Importing `env` as a global

0 commit comments

Comments
 (0)