You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The quick-start programmatic example fails with a contract violation in path-on-disk because path? does not recognize path strings:
path-on-disk?: contract violation
expected: path?
given: "example.txt"
in: the 1st argument of
(-> path? boolean?)
(define watcher (watch (list (string->path "example.txt")))) works correctly, and (define watcher (watch (list (string->path "does_not_exist.txt")))) fails with a correct error.
The text was updated successfully, but these errors were encountered:
The quick-start programmatic example fails with a contract violation in
path-on-disk
becausepath?
does not recognize path strings:(define watcher (watch (list (string->path "example.txt"))))
works correctly, and(define watcher (watch (list (string->path "does_not_exist.txt"))))
fails with a correct error.The text was updated successfully, but these errors were encountered: