diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2018-10-25 07:42:45 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2018-10-25 07:42:45 +0200 |
commit | 223e92b83a42b3963b74a49bae6d571f00bf32f8 (patch) | |
tree | b0413ed44642ed6a60900e7e13bd272e2e4a0987 /lib/packages | |
parent | f5a2c6e19d8c789ad1211264bac89bce7e569e54 (diff) | |
download | Nim-223e92b83a42b3963b74a49bae6d571f00bf32f8.tar.gz |
stdlib: documenation updates, the exception names have been changed
Diffstat (limited to 'lib/packages')
-rw-r--r-- | lib/packages/fsmonitor.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/packages/fsmonitor.nim b/lib/packages/fsmonitor.nim index b22e84f44..89fad4d42 100644 --- a/lib/packages/fsmonitor.nim +++ b/lib/packages/fsmonitor.nim @@ -105,7 +105,7 @@ proc add*(monitor: FSMonitor, target: string, proc del*(monitor: FSMonitor, wd: cint) = ## Removes watched directory or file as specified by ``wd`` from ``monitor``. ## - ## If ``wd`` is not a part of ``monitor`` an EOS error is raised. + ## If ``wd`` is not a part of ``monitor`` an OSError error is raised. if inotifyRmWatch(monitor.fd, wd) < 0: raiseOSError(osLastError()) |