From 1661ce5f40b251217abc9d17f498052778ac3cea Mon Sep 17 00:00:00 2001 From: jedel1043 Date: Sat, 28 Oct 2023 11:52:06 -0600 Subject: [PATCH] Apply review --- boa_engine/src/builtins/typed_array/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boa_engine/src/builtins/typed_array/mod.rs b/boa_engine/src/builtins/typed_array/mod.rs index 3ad9a36c3eb..597a3f74672 100644 --- a/boa_engine/src/builtins/typed_array/mod.rs +++ b/boa_engine/src/builtins/typed_array/mod.rs @@ -401,7 +401,7 @@ impl TypedArrayKind { /// Returns `true` if this kind of typed array supports `Atomics` operations /// - /// Equivalent to `IsUnclampedIntegerElementType(type) is false and IsBigIntElementType(type) is false`. + /// Equivalent to `IsUnclampedIntegerElementType(type) is true || IsBigIntElementType(type) is true`. pub(crate) fn supports_atomic_ops(self) -> bool { match self { TypedArrayKind::Int8