[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Scheme-reports] Missing parenthesis in bytevector-u8-set! example code



While reading through R7RS draft 8 I noticed a minor formatting error in section 6.9 (ByteVectors). The example code for (bytevector-u8-set!) is missing two closing parenthesis in the first line:

    (let ((bv (bytevector 1 2 3 4)
      (bytevector-u8-set! bv 1 3)
      bv)
    => #u8(1 3 3 4)

It should be:

    (let ((bv (bytevector 1 2 3 4)))

Thanks,

Justin
_______________________________________________
Scheme-reports mailing list
Scheme-reports@x
http://lists.scheme-reports.org/cgi-bin/mailman/listinfo/scheme-reports