Fixed typos in the docs, run doc-coverage on Travis
This commit is contained in:
parent
7c365a217c
commit
d4e37ffaea
|
@ -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 .
|
||||
|
|
|
@ -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)]).}
|
||||
|
|
Loading…
Reference in New Issue
Block a user