From 22382f636580c5eb712041013bfbd6bb11910cd1 Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Mon, 7 Jun 2021 09:50:10 -0700 Subject: [PATCH] Replace many instances of 'running' in favor of verbing nouns (#359) --- index.bs | 160 +++++++++++++++++++++++++++---------------------------- 1 file changed, 80 insertions(+), 80 deletions(-) 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.