Skip to content

Commit 5145e17

Browse files
authored
Merge pull request #618 from nnsW3/docs-fix-spelling-issues
Docs fix spelling issues
2 parents 48c8c17 + 5c9a38c commit 5145e17

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ library that can be used via FFI. It is compiled like this:
2828
# Run unit tests
2929
(cd libwasmvm && cargo test)
3030

31-
# Create release build for your current system. Uses whatever default Rust
31+
# Create a release build for your current system. Uses whatever default Rust
3232
# version you have installed.
3333
make build-libwasmvm
3434

@@ -107,11 +107,11 @@ go build -tags "nolink_libwasmvm"
107107
See [COMPILER_VERSIONS.md](docs/COMPILER_VERSIONS.md) for information on Go and
108108
Rust compiler support.
109109

110-
The Rust implementation of the VM is compiled to a library called libwasmvm.
110+
The Rust implementation of the VM is compiled into a library called libwasmvm.
111111
This is then linked to the Go code when the final binary is built. For that
112112
reason not all systems supported by Go are supported by this project.
113113

114-
Linux (tested on Ubuntu, Debian, Alpine) and macOS is supported. We are working
114+
Linux (tested on Ubuntu, Debian, Alpine) and macOS are supported. We are working
115115
on Windows support with very low priority (#288).
116116

117117
[#288]: https://github.com/CosmWasm/wasmvm/pull/288

docs/COMPILER_VERSIONS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The Go version here has the following goals:
1515
versions reasonably wide to avoid unnecessary friction for users. I.e. just
1616
because Cosmos SDK now uses Go 1.19 does not mean we make 1.19 the minimal
1717
supported version here. However, the project should work with the latest
18-
stable Go version. When the majority of our users is between 1.18 and 1.19, we
18+
stable Go version. When the majority of our users are between 1.18 and 1.19, we
1919
can slowly remove 1.17 support by bumping the min version to 1.18.
2020
- Be stable enough to test Go code. We always pin the patch version to ensure CI
2121
runs are reproducible. Those versions will contain security issues from time
@@ -31,10 +31,10 @@ Go version locations:
3131
## Rust
3232

3333
In contrast to Go, the Rust compiler used here produces actual artifacts used
34-
directly by consumer projects. This are the shared .dylib, .so, .dll libraries
34+
directly by consumer projects. These are the shared .dylib, .so, .dll libraries
3535
as well as the static .a libraries. Those libwasmvm builds contain all the Rust
3636
code executing contracts, especially cosmwasm-vm. New Rust versions usually add
37-
features which are not necessarily used or needed. But we should move with the
37+
features that are not necessarily used or needed. But we should move with the
3838
ecosystem to keep the dependency tree compiling. Also new Rust versions tend to
3939
increase runtime speed through optimizer improvements, which never hurts.
4040

docs/MIGRATING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- `QueryRequest.Grpc` was added. It is similar to `QueryRequest.Stargate` but
2828
unlike that, it should always return protobuf encoded responses on all chains.
2929
- `VM.StoreCode` now returns a `uint64` containing the gas cost in CosmWasm gas
30-
and takes a gas limit as argument. This was previously calculated in wasmd.
30+
and takes a gas limit as an argument. This was previously calculated in wasmd.
3131
The change brings consistency with the other functions that cause gas usage.
3232
- `GoAPI` now requires an additional `ValidateAddress` function that validates
3333
whether the given string is a valid address. This was previously done

0 commit comments

Comments
 (0)