typo: compatability->compatibility (#1992)

Signed-off-by: Takeshi Yoneda <t.y.mathetake@gmail.com>
This commit is contained in:
Takeshi Yoneda
2024-01-31 11:41:25 -08:00
committed by GitHub
parent ed112cf3a4
commit e0ffdcecc9
5 changed files with 5 additions and 5 deletions

View File

@@ -67,7 +67,7 @@ dependency.
## Project structure
wazero uses internal packages extensively to balance API compatability desires for end users with the need to safely
wazero uses internal packages extensively to balance API compatibility desires for end users with the need to safely
share internals between compilers.
End-user packages include `wazero`, with `Config` structs, `api`, with shared types, and the built-in `wasi` library.

View File

@@ -55,7 +55,7 @@ on supported platforms:
## Support Policy
The below support policy focuses on compatability concerns of those embedding
The below support policy focuses on compatibility concerns of those embedding
wazero into their Go applications.
### wazero

View File

@@ -5,7 +5,7 @@ import "github.com/tetratelabs/wazero/sys"
// File is a writeable fs.File bridge backed by syscall functions needed for ABI
// including WASI and runtime.GOOS=js.
//
// Implementations should embed UnimplementedFile for forward compatability. Any
// Implementations should embed UnimplementedFile for forward compatibility. Any
// unsupported method or parameter should return ENOSYS.
//
// # Errors

View File

@@ -9,7 +9,7 @@ import (
// FS is a writeable fs.FS bridge backed by syscall functions needed for ABI
// including WASI and runtime.GOOS=js.
//
// Implementations should embed UnimplementedFS for forward compatability. Any
// Implementations should embed UnimplementedFS for forward compatibility. Any
// unsupported method or parameter should return ENO
//
// # Errors

View File

@@ -84,7 +84,7 @@ type FSConfig interface {
//
// # os.DirFS
//
// This configuration optimizes for WASI compatability which is sometimes
// This configuration optimizes for WASI compatibility which is sometimes
// at odds with the behavior of os.DirFS. Hence, this will not behave
// exactly the same as os.DirFS. See /RATIONALE.md for more.
WithDirMount(dir, guestPath string) FSConfig