Skip to content

Commit

Permalink
Merge pull request #3192 from howjmay/typo
Browse files Browse the repository at this point in the history
fix the typos
  • Loading branch information
syrusakbary authored Sep 19, 2022
2 parents 3589094 + 4e36287 commit 4c04767
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ endif
CARGO_BINARY ?= cargo
CARGO_TARGET ?=

# Variables that can be overriden by the users to force to enable or
# Variables that can be overridden by the users to force to enable or
# to disable a specific compiler.
ENABLE_CRANELIFT ?=
ENABLE_LLVM ?=
Expand Down Expand Up @@ -670,7 +670,7 @@ endif

#####
#
# Installating (for Distros).
# Installation (for Distros).
#
#####

Expand Down
4 changes: 2 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,15 @@ ignore = [
[licenses]
# The lint level for crates which do not have a detectable license
unlicensed = "deny"
# List of explictly allowed licenses
# List of explicitly allowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
# [possible values: any SPDX 3.7 short identifier (+ optional exception)].
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
]
# List of explictly disallowed licenses
# List of explicitly disallowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
# [possible values: any SPDX 3.7 short identifier (+ optional exception)].
deny = [
Expand Down
2 changes: 1 addition & 1 deletion docs/cn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ iwr https://win.wasmer.io -useb | iex

#### 执行WebAssembly文件

安装Wasmer之后,你已经准备好执行第一个WebAssemby文件了! 🎉
安装Wasmer之后,你已经准备好执行第一个WebAssembly文件了! 🎉

您可以通过运行 QuickJS 开始: [qjs.wasm](https://registry-cdn.wapm.io/contents/_/quickjs/0.0.3/build/qjs.wasm)

Expand Down
2 changes: 1 addition & 1 deletion tests/wasi-wast/wasi/tests/poll_oneoff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use std::path::PathBuf;
#[cfg(target_os = "wasi")]
#[link(wasm_import_module = "wasi_unstable")]
extern "C" {
fn poll_oneoff(subscriptons: u32, events: u32, nsubscriptons: u32, nevents: u32) -> u16;
fn poll_oneoff(subscriptions: u32, events: u32, nsubscriptions: u32, nevents: u32) -> u16;
}

#[derive(Debug, Copy, Clone)]
Expand Down

0 comments on commit 4c04767

Please sign in to comment.