Skip to content

Commit d7cf06c

Browse files
fix typos in wrangler config doc
1 parent 88a945d commit d7cf06c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/content/docs/workers/wrangler/configuration.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,13 +1094,13 @@ The following options are available:
10941094

10951095
- `max_instances` <Type text="string" /> <MetaInfo text="optional" />
10961096

1097-
- The maxiumum number of concurrent container instances you want to run. If you have more Durable Objects that
1097+
- The maximum number of concurrent container instances you want to run. If you have more Durable Objects that
10981098
request to run a container than this number, the container request will error. You may have more Durable Objects
10991099
than this number over a longer time period, but you may not have more concurrently.
11001100

11011101
- `name` <Type text="string" /> <MetaInfo text="optional" />
11021102

1103-
- The name of your container. Used as an identifier. This will default to a comination of your Worker name, the class
1103+
- The name of your container. Used as an identifier. This will default to a combination of your Worker name, the class
11041104
name, and your environment.
11051105

11061106
- `image_build_context` <Type text="string" /> <MetaInfo text="optional" />
@@ -1224,7 +1224,7 @@ You can configure various aspects of local development, such as the local protoc
12241224

12251225
- `enable_containers` <Type text="boolean" /> <MetaInfo text="optional" />
12261226

1227-
- Determines whether to enable containers during a local dev session, if they have been configured. Defaults to `true`. If set to `false`, you can develop the rest of your application without requiring Docker or other container tool, as long as you do not invoke any code that interacts with containers.
1227+
- Determines whether to enable containers during a local dev session, if they have been configured. Defaults to `true`. If set to `false`, you can develop the rest of your application without requiring Docker or other container tool, as long as you do not invoke any code that interacts with containers.
12281228

12291229
- `container_engine` <Type text="string" /> <MetaInfo text="optional" />
12301230

@@ -1292,12 +1292,12 @@ You can alias all imports of `node-fetch` to instead point directly to the `fetc
12921292

12931293
```toml title="wrangler.toml"
12941294
[alias]
1295-
"node-fetch" = "./fetch-nolyfill"
1295+
"node-fetch" = "./fetch-polyfill"
12961296
```
12971297

12981298
</WranglerConfig>
12991299

1300-
```js title="./fetch-nolyfill"
1300+
```js title="./fetch-polyfill"
13011301
export default fetch;
13021302
```
13031303

0 commit comments

Comments
 (0)