From 07db9c3e819feb8c8d6107c4d0e990ab063378d3 Mon Sep 17 00:00:00 2001 From: Mat Sadler Date: Sun, 24 Dec 2023 11:55:16 +0000 Subject: [PATCH] fix doc typo --- src/gc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gc.rs b/src/gc.rs index 41dfc386..52c2446d 100644 --- a/src/gc.rs +++ b/src/gc.rs @@ -193,7 +193,7 @@ impl Compactor { /// let root = RArray::new(); /// gc::register_mark_object(root); /// -/// // won't be collected while it is in out `root` array +/// // won't be collected while it is in our `root` array /// let s = RString::new("example"); /// root.push(s).unwrap(); /// ```