Skip to content

Commit

Permalink
Apply review
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Oct 31, 2023
1 parent 0e540b5 commit 1661ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boa_engine/src/builtins/typed_array/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1661ce5

Please sign in to comment.