racket / rackunit

Other
18 stars 34 forks source link

Change any to any/c where appropriate (fixes #106) #108

Closed sorawee closed 5 years ago

sorawee commented 5 years ago

Using any is a syntax error in non-return position. This PR corrects this mistake in the documentation. Note that the change is conservative: I only fix the cases that are definitely incorrect, but there could still be incorrect ones left.

sorawee commented 5 years ago

Which any are you talking about? There are a few any that I didn't touch because they are in the return position, so they are fine.

bennn commented 5 years ago

test-case?, test-exn, and test-suite? in the file compound-testing.scrbl

sorawee commented 5 years ago