Skip to content

Commit

Permalink
fix typos from pr #80
Browse files Browse the repository at this point in the history
two small changes that I'd noticed when reading #80
  • Loading branch information
bennn committed Feb 6, 2022
1 parent 50bbf39 commit 83224ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rackunit-doc/rackunit/scribblings/misc.scrbl
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Provided by @racketmodname[rackunit] at phase 1.
}

@defproc[(check-transformer-impl-name [ct check-transformer?]) identifier?]{
Given a transformer @racket[_ct] defined with @racket[defined-check],
Given a transformer @racket[_ct] defined with @racket[define-check],
produces an identifier which names the procedure implementing the
check. This procedure takes the same arguments as the check form, as
well as two mandatory keyword arguments: @racket[#:location] whose argument
Expand Down
2 changes: 1 addition & 1 deletion rackunit-lib/rackunit/private/check.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
(define (check-transformer-impl-name s)
(unless (check-transformer? s)
(raise-argument-error
'check-transformer-impl-name "check-transformer" s))
'check-transformer-impl-name "check-transformer?" s))
(check-transformer-impl s))
(define-syntax-class check-name
(pattern i:id
Expand Down

0 comments on commit 83224ac

Please sign in to comment.