diff --git a/index.html b/index.html
index a7213cd..f6bca78 100644
--- a/index.html
+++ b/index.html
@@ -3203,12 +3203,11 @@
Verify Proof Sets and Chains
For each |proof| in |allProofs|, do the following steps:
-
-
- -
+
+ -
Let |matchingProofs| be an empty list.
-
- -
+
+ -
If |proof| contains a `previousProof` attribute and that attribute is a string,
add the element from |allProofs| with an `id` attribute matching `previousProof`
to `matchingProofs`. If a proof with `id` does not exist in |allProofs|, an
@@ -3220,23 +3219,24 @@
Verify Proof Sets and Chains
attribute of any element of |allProofs|, an error MUST be raised and SHOULD
convey an error type of
MALFORMED_PROOF_ERROR.
-
- -
+
+ -
Let |unsecuredDocument| be a copy of |securedDocument| with the proof value
removed and then set |unsecuredDocument.proof| to |matchingProofs|.
-
- -
+
+ -
Run steps 5 through 8 to validate the contents of |proof|.
-
- -
+
+ -
Run steps 10 through 15 of the algorithm in section [[[#verify-proof]]]; if no
exceptions are raised, associate the |isProofVerified| value with this |proof|.
-
+
We specifically use the value of |unsecuredDocument| as set above, rather than
using the value from step 5 of the algorithm in section [[[#verify-proof]]].
-
-
-
+
+
+
+
Return the |allProofs| along with each proof's associated
|isProofVerified| information.