srfi-145 editorial error Per Bothner 01 Apr 2017 12:34 UTC

This example in the Rationale section:

  (define (foo x a b)
    (case
     ((plus) (+ a b))
     ((minus) (- a b))
     (else (assume #f "valid operators are plus/minus" x))))

has a missing <key> (after the "(case").

It should presumably be:

  (define (foo x a b)
    (case x
     ((plus) (+ a b))
     ((minus) (- a b))
     (else (assume #f "valid operators are plus/minus" x))))
--
	--Per Bothner
xxxxxx@bothner.com   http://per.bothner.com/