Skip to content

Commit 42204e9

Browse files
authored
chore: remove mistaken this
1 parent 2900bbc commit 42204e9

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
@@ -103,7 +103,7 @@ Bindings are located on the `env` object, which can be accessed in several ways:
103103

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

109109
### Importing `env` as a global

0 commit comments

Comments
 (0)