From eef252859afb6b310ee5a22967f41ec2e4f26ea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Wed, 25 Mar 2026 10:15:40 -0700 Subject: [PATCH] Editorial: Reword loop in ValidateAndApplyPropertyDescriptor (#3773) --- spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.html b/spec.html index d90603470f..8c110ea51d 100644 --- a/spec.html +++ b/spec.html @@ -12833,7 +12833,7 @@

1. If _Desc_ has an [[Enumerable]] field, let _enumerable_ be _Desc_.[[Enumerable]]; else let _enumerable_ be _current_.[[Enumerable]]. 1. Replace the property named _P_ of object _O_ with a data property whose [[Configurable]] and [[Enumerable]] attributes are set to _configurable_ and _enumerable_, respectively, and whose [[Value]] and [[Writable]] attributes are set to the value of the corresponding field in _Desc_ if _Desc_ has that field, or to the attribute's default value otherwise. 1. Else, - 1. For each field of _Desc_, set the corresponding attribute of the property named _P_ of object _O_ to the value of the field. + 1. For each field name _F_ of _Desc_, set the attribute named _F_ of the property named _P_ of object _O_ to the value of _Desc_'s _F_ field. 1. Return *true*.