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*.