diff options
author | Anatoly Galiulin <galiulin.anatoly@gmail.com> | 2017-03-10 22:18:56 +0700 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-03-10 16:18:56 +0100 |
commit | cb9d554ac93480c442a00129eaa0126396c884a3 (patch) | |
tree | ecd4c5785b525473053888856b5d98fa9fc1ae41 /lib | |
parent | 62ef5dfec832e0d9f68033118c02fc69df9e222a (diff) | |
download | Nim-cb9d554ac93480c442a00129eaa0126396c884a3.tar.gz |
Fix typo (#5501)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/ospaths.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/ospaths.nim b/lib/pure/ospaths.nim index 87ece2582..71991e35a 100644 --- a/lib/pure/ospaths.nim +++ b/lib/pure/ospaths.nim @@ -25,8 +25,8 @@ when not declared(getEnv) or defined(nimscript): WriteEnvEffect* = object of WriteIOEffect ## effect that denotes a write ## to an environment variable - ReadDirEffect* = object of ReadIOEffect ## effect that denotes a write - ## operation to the directory + ReadDirEffect* = object of ReadIOEffect ## effect that denotes a read + ## operation from the directory ## structure WriteDirEffect* = object of WriteIOEffect ## effect that denotes a write ## operation to |