From 6400af218814adf4407a729a855e78fbae533da0 Mon Sep 17 00:00:00 2001 From: Teymour Aldridge <42674621+teymour-aldridge@users.noreply.github.com> Date: Sun, 11 Apr 2021 22:33:22 +0100 Subject: [PATCH] Fix a typo in gc.rs (#1202) --- boa/src/gc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boa/src/gc.rs b/boa/src/gc.rs index 98f5da9c13..c9586ba19c 100644 --- a/boa/src/gc.rs +++ b/boa/src/gc.rs @@ -1,4 +1,4 @@ -//! This module represents the main way to interact with the garbacge collector. +//! This module represents the main way to interact with the garbage collector. // This is because `rust-gc` unsafe_empty_trace has a `unsafe_` // when it should be `empty_trace`.