Fixed typos in the docs, run doc-coverage on Travis

This commit is contained in:
Georges Dupéron 2017-01-29 20:09:46 +01:00
parent 7c365a217c
commit d4e37ffaea
2 changed files with 6 additions and 7 deletions

View File

@ -49,10 +49,9 @@ script:
script:
- raco test -p scope-operations
- raco setup --check-pkg-deps --no-zo --no-launcher --no-install --no-post-install --no-docs --pkgs scope-operations
#- raco pkg install --deps search-auto doc-coverage
#- if $RACKET_VERSION != "6.5" -a $RACKET_VERSION != "6.6"; then raco doc-coverage scope-operations; fi
#- raco doc-coverage scope-operations
- raco pkg install --deps search-auto doc-coverage
- raco doc-coverage scope-operations
- raco pkg install --deps search-auto cover cover-codecov
- raco cover -b -f codecov -d $TRAVIS_BUILD_DIR/coverage .
after_success:
- raco pkg install --deps search-auto cover cover-coveralls
- raco cover -b -f coveralls -d $TRAVIS_BUILD_DIR/coverage .

View File

@ -71,11 +71,11 @@
scopes/c]{Set intersection of the given sets of scopes.}
@defproc[(single-scopes? [sc (or/c syntax? scopes/c)]) boolean?]{
@defproc[(single-scope? [sc (or/c syntax? scopes/c)]) boolean?]{
Predicate which returns @racket[#true] iff the given set of scopes contains
only a single scope.}
@defproc[(zero-scope? [sc (or/c syntax? scopes/c)]) boolean?]{
@defproc[(zero-scopes? [sc (or/c syntax? scopes/c)]) boolean?]{
Predicate which returns @racket[#true] iff the given set of scopes contains
no scopes (e.g. because sc has been created with
@racket[(datum->syntax #f 'id)]).}