Skip to content

Commit 2c8a9cc

Browse files
Fix typos and minor doc changes (#535)
Co-authored-by: Jake Champion <[email protected]>
1 parent 915ffda commit 2c8a9cc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ And this is the change that would need to be made for constructing an instance o
2525
```
2626

2727

28-
Here is a full example of migrating an applicatin from ObjectStore to KVStore:
28+
Here is a full example of migrating an application from ObjectStore to KVStore:
2929
```diff
3030
/// <reference types="@fastly/js-compute" />
3131

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ to pull down or update submodules.
1818

1919
To build from source, you need to ensure that the headers and object files for the [SpiderMonkey JavaScript engine](https://spidermonkey.dev/) are available. It's recommended to download pre-built object files:
2020
```sh
21-
(cd runtime/spidermonkey && sh download-engine.sh)
21+
(cd runtime/spidermonkey && bash download-engine.sh)
2222
```
2323

2424

documentation/docs/migration-guide/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ And this is the change that would need to be made for constructing an instance o
2626
```
2727

2828

29-
Here is a full example of migrating an applicatin from ObjectStore to KVStore:
29+
Here is a full example of migrating an application from ObjectStore to KVStore:
3030
```diff
3131
/// <reference types="@fastly/js-compute" />
3232

documentation/versioned_docs/version-2.0.0/migration-guide/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ And this is the change that would need to be made for constructing an instance o
2626
```
2727

2828

29-
Here is a full example of migrating an applicatin from ObjectStore to KVStore:
29+
Here is a full example of migrating an application from ObjectStore to KVStore:
3030
```diff
3131
/// <reference types="@fastly/js-compute" />
3232

js-compute-runtime-cli.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ if (version) {
2121
await printHelp();
2222
} else {
2323
// This is a dynamic import because this import will throw an error
24-
// if if does not have a pre-compiled version of Wizer available the platform
24+
// if it does not have a pre-compiled version of Wizer available in the platform
2525
// running the CLI. In that situation, we would still like the
2626
// js-compute-runtime cli's --version and --help flags to work as
2727
// it could be that the user is using an older version of js-compute-runtime
28-
// and a newer version does support the platform they are using.
28+
// and a newer version does not support the platform they are using.
2929
const {compileApplicationToWasm} = await import('./src/compileApplicationToWasm.js')
3030
await compileApplicationToWasm(input, output, wasmEngine, enableExperimentalHighResolutionTimeMethods);
3131
if (component) {

0 commit comments

Comments
 (0)