Skip to content

Commit

Permalink
fix another versioned reference
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelballantyne committed Sep 11, 2024
1 parent e81a9fc commit b7ddebf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scribblings/tutorial/basic-tutorial.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ Now we have all the pieces to run programs using state machines:
@examples[
#:label #f
(require racket/class
syntax-spec/tests/dsls/state-machine-for-tutorial)
syntax-spec-v2/tests/dsls/state-machine-for-tutorial)
(define vending-machine
(machine
#:initial idle
Expand Down Expand Up @@ -525,7 +525,7 @@ This static check runs before we generate the compiled code. Compilers may have
@examples[
#:label #f
(require racket/class
syntax-spec/tests/dsls/state-machine-for-tutorial)
syntax-spec-v2/tests/dsls/state-machine-for-tutorial)
(eval:error
(define gas-tank
(machine
Expand Down Expand Up @@ -565,7 +565,7 @@ Now let's create a macro in our language!

@examples[#:label #f
(require racket/class
syntax-spec/tests/dsls/state-machine-for-tutorial)
syntax-spec-v2/tests/dsls/state-machine-for-tutorial)
(define-state-syntax simple-state
(syntax-rules ()
[(_ name [evt next] ...)
Expand Down

0 comments on commit b7ddebf

Please sign in to comment.