diff --git a/spec.html b/spec.html
index ced11e6b8f..e081ecfa83 100644
--- a/spec.html
+++ b/spec.html
@@ -2570,7 +2570,7 @@
[[GetOwnProperty]] ( _P_ )
The normal return type is either Property Descriptor or Undefined.
- If the Type of the return value is Property Descriptor, the return value must be a complete property descriptor.
+ If the Type of the return value is Property Descriptor, the return value must be a fully populated Property Descriptor.
If _P_ is described as a non-configurable, non-writable own data property, all future calls to [[GetOwnProperty]] ( _P_ ) must return Property Descriptor whose [[Value]] is SameValue as _P_'s [[Value]] attribute.
@@ -7441,7 +7441,7 @@ SetDefaultGlobalBindings ( _realmRec_ )
1. Let _global_ be _realmRec_.[[GlobalObject]].
1. For each property of the Global Object specified in clause , do
1. Let _name_ be the String value of the property name.
- 1. Let _desc_ be the fully populated data property descriptor for the property, containing the specified attributes for the property. For properties listed in , , or the value of the [[Value]] attribute is the corresponding intrinsic object from _realmRec_.
+ 1. Let _desc_ be the fully populated data Property Descriptor for the property, containing the specified attributes for the property. For properties listed in , , or the value of the [[Value]] attribute is the corresponding intrinsic object from _realmRec_.
1. Perform ? DefinePropertyOrThrow(_global_, _name_, _desc_).
1. Return _global_.