From f443bece06e89495e1f0df63b8372f8a2fb21d6b Mon Sep 17 00:00:00 2001 From: LetThereBeLemons <92221244+LetThereBeLemons@users.noreply.github.com> Date: Mon, 18 Jul 2022 07:20:30 +0100 Subject: [PATCH] Fixed typo in std/os doc (#20054) Fixed typo --- lib/pure/os.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/os.nim b/lib/pure/os.nim index a60e913f10..79f9950a76 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`_