From 02156eaef3006c687aa9e972463b3a60db80c671 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Thu, 12 Nov 2020 13:44:16 -0800 Subject: [PATCH] wasmtime: Remove typo in doc comment --- crates/wasmtime/src/ref.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wasmtime/src/ref.rs b/crates/wasmtime/src/ref.rs index 88c5e47f82..6ea86655ab 100644 --- a/crates/wasmtime/src/ref.rs +++ b/crates/wasmtime/src/ref.rs @@ -29,7 +29,7 @@ impl ExternRef { self.inner.strong_count() } - /// Does this `ExternRef` point to the same inner value as `other`?0 + /// Does this `ExternRef` point to the same inner value as `other`? /// /// This is *only* pointer equality, and does *not* run any inner value's /// `Eq` implementation.