diff options
author | Juan Carlos <juancarlospaco@gmail.com> | 2022-03-23 16:43:58 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 20:43:58 +0100 |
commit | b0bd4320a0cd9a90acf44bca0dddf10fa5022969 (patch) | |
tree | 494174c9ebbf51c53df2ed31a821b63bbfeea683 | |
parent | d7a966c4ebdb13a1cc414ce98bbff87ffa922261 (diff) | |
download | Nim-b0bd4320a0cd9a90acf44bca0dddf10fa5022969.tar.gz |
Remove deprecated typo poDemon (#19631)
* Remove Deprecated poDemon * Remove Deprecated poDemon
-rw-r--r-- | changelog.md | 2 | ||||
-rw-r--r-- | lib/pure/osproc.nim | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/changelog.md b/changelog.md index 73cb5e2b5..92d2612e8 100644 --- a/changelog.md +++ b/changelog.md @@ -48,6 +48,8 @@ becomes an alias for `addr`. - Removed deprecated ``` httpcore.`==` ```. - Removed deprecated `std/dom_extensions`. +- Remove deprecated `osproc.poDemon`, symbol with typo. + ## Language changes diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index dca5099a4..512db92a4 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -70,11 +70,6 @@ type Process* = ref ProcessObj ## Represents an operating system process. -const poDemon* {.deprecated.} = poDaemon ## Nim versions before 0.20 - ## used the wrong spelling ("demon"). - ## Now `ProcessOption` uses the correct spelling ("daemon"), - ## and this is needed just for backward compatibility. - proc execProcess*(command: string, workingDir: string = "", args: openArray[string] = [], env: StringTableRef = nil, |