From 8c8a76979bdac37add88ec5f6ffcf8b230bdafce Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Fri, 1 Jan 2016 12:46:14 -0600 Subject: [PATCH] Fix keyword argument name. Closes PR 15089. --- pkgs/racket-doc/scribblings/guide/define-struct.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/racket-doc/scribblings/guide/define-struct.scrbl b/pkgs/racket-doc/scribblings/guide/define-struct.scrbl index b5481a95fc..c458eee8c3 100644 --- a/pkgs/racket-doc/scribblings/guide/define-struct.scrbl +++ b/pkgs/racket-doc/scribblings/guide/define-struct.scrbl @@ -453,7 +453,7 @@ A @racket[_struct-option] always starts with a keyword: @racket[#:auto] field option. The constructor procedure does not accept arguments for automatic fields. Automatic fields are implicitly mutable (via reflective operations), but mutator - functions are bound only if @racket[#:mutator] is also specified. + functions are bound only if @racket[#:mutable] is also specified. @defexamples[ (struct posn (x y [z #:auto])