summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorLetThereBeLemons <92221244+LetThereBeLemons@users.noreply.github.com>2022-07-18 07:20:30 +0100
committerGitHub <noreply@github.com>2022-07-18 14:20:30 +0800
commitf443bece06e89495e1f0df63b8372f8a2fb21d6b (patch)
tree6d7a3b2a722c7e0f11ece1bb04540665b9fe20b7 /lib
parentc6264ed847422671e025a45ea66412dc6812f4c5 (diff)
downloadNim-f443bece06e89495e1f0df63b8372f8a2fb21d6b.tar.gz
Fixed typo in std/os doc (#20054)
Fixed typo
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/os.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim
index a60e913f1..79f9950a7 100644
--- a/lib/pure/os.nim
+++ b/lib/pure/os.nim
@@ -1741,7 +1741,7 @@ proc createSymlink*(src, dest: string) {.noWeirdTarget.} =
   ## by `src`. On most operating systems, will fail if a link already exists.
   ##
   ## .. warning:: Some OS's (such as Microsoft Windows) restrict the creation
-  ##   of symlinks to root users (administrators) or users with developper mode enabled.
+  ##   of symlinks to root users (administrators) or users with developer mode enabled.
   ##
   ## See also:
   ## * `createHardlink proc`_