diff options
author | Simon Ruderich <simon@ruderich.org> | 2016-09-15 04:17:57 +0200 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2016-09-15 04:20:24 +0200 |
commit | 4f1886621eea509e1a907fcdf5a660bf0309c2ce (patch) | |
tree | 5f93aa6f438bda7c3a46be63d79ae2087fa67a1e | |
parent | 2680a613bef0b98ed0f0b7529a988162548d38ff (diff) | |
download | Nim-4f1886621eea509e1a907fcdf5a660bf0309c2ce.tar.gz |
os: createSymlink: fix typo in documentation
-rw-r--r-- | lib/pure/os.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim index d9ae5a1e6..c2ee212df 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -1047,7 +1047,7 @@ proc copyDir*(source, dest: string) {.rtl, extern: "nos$1", proc createSymlink*(src, dest: string) = ## Create a symbolic link at `dest` which points to the item specified - ## by `src`. On most operating systems, will fail if a lonk + ## by `src`. On most operating systems, will fail if a link already exists. ## ## **Warning**: ## Some OS's (such as Microsoft Windows) restrict the creation |