diff --git a/spec/index.bs b/spec/index.bs
index a057ac1a7..497419984 100644
--- a/spec/index.bs
+++ b/spec/index.bs
@@ -410,21 +410,23 @@ dictionary IdentityCredentialErrorInit {
-The {{IdentityCredentialError/constructor()}}, given a |realm|, a {{DOMString}} |message| and a
- {{IdentityCredentialErrorInit}} |options| must run the following steps:
+Given a |realm|, a {{DOMString}} |message|, and an {{IdentityCredentialErrorInit}}
+|options|, the {{IdentityCredentialError/constructor()}} must run the following steps:
1. Invoke the {{DOMException}}'s {{DOMException/constructor()}}, passing |realm| and |message|.
- 1. Set
this.{{IdentityCredentialError/code}} to |options|.{{IdentityCredentialError/code}}
- if it is present in |options|, or to "" otherwise.
- 1. Set
this.{{IdentityCredentialError/url}} to |options|.{{IdentityCredentialError/url}}
- if it is present in |options|, or to "" otherwise.
+ 1. If |options|.{{IdentityCredentialError/code}} is present in |options|,
+ set
this.{{IdentityCredentialError/code}} to it; otherwise, set
+
this.{{IdentityCredentialError/code}} to "".
+ 1. If |options|.{{IdentityCredentialError/url}} is present in |options|,
+ set
this.{{IdentityCredentialError/url}} to it; otherwise, set
+
this.{{IdentityCredentialError/url}} to "".