diff --git a/spec.html b/spec.html
index 30e17156cb..55ba632e5f 100644
--- a/spec.html
+++ b/spec.html
@@ -37165,7 +37165,8 @@
The RegExp Constructor
- is %RegExp%.
- is the initial value of the *"RegExp"* property of the global object.
- - when called as a function, returns either a new RegExp object, or the argument itself if the only argument is a RegExp object.
+ - creates and initializes a new RegExp object when called as a constructor.
+ - when called as a function rather than as a constructor, returns either a new RegExp object, or the argument itself if the only argument is a RegExp object.
- may be used as the value of an `extends` clause of a class definition. Subclass constructors that intend to inherit the specified RegExp behaviour must include a `super` call to the RegExp constructor to create and initialize subclass instances with the necessary internal slots.