Fix 'string->positive-integer' docstring typo.

* gash/built-ins/utils.scm (string->positive-integer): Fix a typo in
the docstring.
This commit is contained in:
Timothy Sample 2019-11-25 20:02:12 -05:00
parent 804b6cbe05
commit 38001cb76d
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@
(define (string->positive-integer s)
"Return the positive integer represented by the string @var{s}. If
@var{s} does not represent a positive, decimal integer in return
@var{s} does not represent a positive, decimal integer return
@code{#f}."
(and=> (and (string-every char-set:ascii-digit s) (string->number s))
(lambda (n)