From ce4f4b14f628c40b2a7835f9d62d5e9f86a3078c Mon Sep 17 00:00:00 2001 From: Florian Scholz Date: Fri, 14 Jun 2024 19:59:19 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Daniel D. Beck --- features/growable-sharedarraybuffer.yml | 2 +- features/resizable-arraybuffer.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/features/growable-sharedarraybuffer.yml b/features/growable-sharedarraybuffer.yml index 5a50fae99ff..e81c6463da8 100644 --- a/features/growable-sharedarraybuffer.yml +++ b/features/growable-sharedarraybuffer.yml @@ -1,5 +1,5 @@ name: Growable SharedArrayBuffer -description: ShareArrayBuffer objects can take a maximum length allowing them to grow in place. +description: The `grow()` method of a `SharedArrayBuffer`, constructed with the `maxByteLength` option, increases the size of the buffer in place. spec: https://tc39.es/ecma262/multipage/structured-data.html#sec-get-sharedarraybuffer.prototype.growable compat_features: - javascript.builtins.SharedArrayBuffer.SharedArrayBuffer.maxByteLength_option diff --git a/features/resizable-arraybuffer.yml b/features/resizable-arraybuffer.yml index 2ac2e414b9f..eb6c8ceb032 100644 --- a/features/resizable-arraybuffer.yml +++ b/features/resizable-arraybuffer.yml @@ -1,5 +1,5 @@ name: Resizable ArrayBuffer -description: ArrayBuffer objects can take a maximum length allowing them to grow and shrink in place. +description: The `resize()` method of an `ArrayBuffer`, constructed with the `maxByteLength` option, changes the size of the buffer in place. spec: https://tc39.es/ecma262/multipage/structured-data.html#sec-get-arraybuffer.prototype.resizable compat_features: - javascript.builtins.ArrayBuffer.ArrayBuffer.maxByteLength_option