diff --git a/typed-racket-doc/typed-racket/scribblings/guide/typed-untyped-interaction.scrbl b/typed-racket-doc/typed-racket/scribblings/guide/typed-untyped-interaction.scrbl index 7066d788..d046be40 100644 --- a/typed-racket-doc/typed-racket/scribblings/guide/typed-untyped-interaction.scrbl +++ b/typed-racket-doc/typed-racket/scribblings/guide/typed-untyped-interaction.scrbl @@ -104,7 +104,7 @@ function: (module increment racket (provide increment) - (code:contract "increment : exact-integer? -> exact-integer?") + (code:contract increment : exact-integer? -> exact-integer?) (define (increment x) "this is broken")) ]