diff --git a/index.bs b/index.bs index 28b8c15..05c1eab 100644 --- a/index.bs +++ b/index.bs @@ -700,7 +700,7 @@ To compare two keys |a| and |b|, run these steps: 1. Let |i| be 0. 1. While |i| is less than |length|, then: - 1. Let |c| be the result of recursively running [=compare two keys=] with |va|[|i|] and |vb|[|i|]. + 1. Let |c| be the result of recursively [=/comparing two keys=] with |va|[|i|] and |vb|[|i|]. 1. If |c| is not 0, return |c|. 1. Increase |i| by 1. @@ -713,15 +713,15 @@ To compare two keys |a| and |b|, run these steps: The [=/key=] |a| is greater than the [=/key=] |b| if the -result of running [=compare two keys=] with |a| and |b| +result of [=/comparing two keys=] with |a| and |b| is 1. The [=/key=] |a| is less than the [=/key=] |b| if the -result of running [=compare two keys=] with |a| and |b| +result of [=/comparing two keys=] with |a| and |b| is -1. The [=/key=] |a| is equal to the [=/key=] |b| if the result -of running [=compare two keys=] with |a| and |b| is 0. +of [=/comparing two keys=] with |a| and |b| is 0.