From e20f58670315d5e528a5783b3172c06b4b568511 Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Thu, 13 Jun 2024 16:25:10 +0200 Subject: [PATCH] Editorial: correct "is empty" reference Fixes #329. --- encoding.bs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/encoding.bs b/encoding.bs index fe9b0f2..9694e88 100644 --- a/encoding.bs +++ b/encoding.bs @@ -116,7 +116,7 @@ present in I/O queues of any type and it signifies that there are n I/O queue ioQueue, run these steps:
    -
  1. If ioQueue is empty, then wait until its size is +

  2. If ioQueue is empty, then wait until its size is at least 1.

  3. If ioQueue[0] is end-of-queue, then return end-of-queue. @@ -128,7 +128,7 @@ present in I/O queues of any type and it signifies that there are n ioQueue, run these steps:

      -
    1. Let readItems be an empty list. +

    2. Let readItems be « ».

    3. Perform the following step number times: @@ -152,7 +152,7 @@ from an I/O queue ioQueue, run these steps: number, or ioQueue contains end-of-queue, whichever comes first. -

    4. Let prefix be an empty list. +

    5. Let prefix be « ».

    6. For each n in the range 1 to number, inclusive: