diff --git a/brag/brag/brag.scrbl b/brag/brag/brag.scrbl index 739a8e7..f7cab87 100755 --- a/brag/brag/brag.scrbl +++ b/brag/brag/brag.scrbl @@ -1042,9 +1042,9 @@ In addition to the exports shown below, the @racketmodname[brag/support] module @defproc[(token [type (or/c string? symbol?)] [val any/c #f] [#:line line (or/c positive-integer? #f) #f] - [#:column column (or/c natural-number? #f) #f] + [#:column column (or/c nonnegative-integer? #f) #f] [#:position position (or/c positive-integer? #f) #f] - [#:span span (or/c natural-number? #f) #f] + [#:span span (or/c nonnegative-integer? #f) #f] [#:skip? skip? boolean? #f] ) token-struct?]{ @@ -1060,9 +1060,9 @@ In addition to the exports shown below, the @racketmodname[brag/support] module @defstruct[token-struct ([type symbol?] [val any/c] [position (or/c positive-integer? #f)] - [line (or/c natural-number? #f)] + [line (or/c nonnegative-integer? #f)] [column (or/c positive-integer? #f)] - [span (or/c natural-number? #f)] + [span (or/c nonnegative-integer? #f)] [skip? boolean?]) #:transparent]{ The token structure type.