From 98d00ba909765732219d1439fbaf45532dfe8932 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Thu, 13 Feb 2025 15:16:22 +0100 Subject: [PATCH 1/2] Update bindings.h --- api/bindings.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */ From faf4efd639e21c5695e4d58928197a54d55943b5 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Thu, 13 Feb 2025 15:17:56 +0100 Subject: [PATCH 2/2] Update lib_test.go --- api/lib_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()