Fix typo in multimethods post: (struct-out vec)

The `(struct-out vals)` should be `(struct-out vec)`.
This commit is contained in:
Georges Dupéron 2016-03-29 22:58:11 +02:00
parent b1644ef7d0
commit f6ce508be0

View File

@ -35,7 +35,7 @@ This blog post is somewhat long and technical, so before proceeding any further,
(provide mul
(struct-out num)
(struct-out vals))
(struct-out vec))
(struct num (val))
(struct vec (vals))
@ -92,7 +92,7 @@ What exactly is this dangerous-sounding “spooky action”, and what causes it?
```racket
(provide mul
(struct-out num)
(struct-out vals))
(struct-out vec))
(struct num (val))
(struct vec (vals))