Skip to content

Commit d2e00d3

Browse files
authored
s/WASM/Wasm (#502)
According to webassembly.org, the correct abbreviation is: WebAssembly (abbreviated Wasm)
1 parent a5371bb commit d2e00d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/src/ruby_api/engine.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ impl Engine {
7878
/// @option config [Boolean] :wasm_multi_memory
7979
/// @option config [Boolean] :wasm_memory64
8080
/// @option config [Boolean] :wasm_reference_types
81-
/// @option config [Boolean] :parallel_compilation (true) Whether compile WASM using multiple threads
81+
/// @option config [Boolean] :parallel_compilation (true) Whether compile Wasm using multiple threads
8282
/// @option config [Boolean] :generate_address_map Configures whether compiled artifacts will contain information to map native program addresses back to the original wasm module. This configuration option is `true` by default. Disabling this feature can result in considerably smaller serialized modules.
8383
/// @option config [Symbol] :cranelift_opt_level One of +none+, +speed+, +speed_and_size+.
8484
/// @option config [Symbol] :profiler One of +none+, +jitdump+, +vtune+.

ext/src/ruby_api/memory/unsafe_slice.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ use std::ops::Range;
2121
/// @yard
2222
/// @rename Wasmtime::Memory::UnsafeSlice
2323
/// Represents a slice of a WebAssembly memory. This is useful for creating Ruby
24-
/// strings from WASM memory without any extra memory allocations.
24+
/// strings from Wasm memory without any extra memory allocations.
2525
///
2626
/// The returned {UnsafeSlice} lazily reads the underlying memory, meaning that
2727
/// the actual pointer to the string buffer is not materialzed until

0 commit comments

Comments
 (0)