Skip to content

Commit

Permalink
minor(wasm-api): fix type name typo [zig]
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Nov 15, 2022
1 parent 666546c commit 8a2e191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wasm-api/zig/lib.zig
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ pub inline fn string(str: []const u8) String {
return String.wrap(str);
}

/// Syntax sugar for `MutableString.wrap()`
/// Syntax sugar for `MutString.wrap()`
pub inline fn mutString(str: []u8) String {
return MutableString.wrap(str);
return MutString.wrap(str);
}

/// Similar to @ptrCast intrinsic. Helper function to cast & re-align an
Expand Down

0 comments on commit 8a2e191

Please sign in to comment.