diff --git a/api/bindings.h b/api/bindings.h index a87c55c..30be638 100644 --- a/api/bindings.h +++ b/api/bindings.h @@ -49,7 +49,7 @@ typedef struct cache_t { * section is not owned by the span, similar to C++'s std::span. The `span`'s creator is * responsible for allocating the space and freeing it afterward. * - * The primary usecase of `span` is to faciliate communication between Go and Rust. + * The primary usecase of `span` is to facilitate communication between Go and Rust. * One side allocates space and creates a `span` for the counterpart to read or write * without needing to worry about memory management. */ diff --git a/api/lib_test.go b/api/lib_test.go index 3cf2ffd..fe09b09 100644 --- a/api/lib_test.go +++ b/api/lib_test.go @@ -76,7 +76,7 @@ func TestRuntimeError(t *testing.T) { require.Equal(t, ErrRuntime, err) } -func TestInvaildSignature(t *testing.T) { +func TestInvalidSignature(t *testing.T) { vm, release := newTestVM(t) defer release()