diff options
author | Antonis Geralis <43617260+planetis-m@users.noreply.github.com> | 2022-06-09 09:27:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-09 08:27:31 +0200 |
commit | 836b95c896087a3f24bedad9bc1bcb2c5db1c5a8 (patch) | |
tree | 1830448785cd0ce6877e4a53baad2435c21b0cc5 /lib | |
parent | 415689323c625afb7d39d923c4165a541beb9927 (diff) | |
download | Nim-836b95c896087a3f24bedad9bc1bcb2c5db1c5a8.tar.gz |
Deprecate std/sums (#18439)
* Deprecate sums * Update changelog.md * Update lib/std/sums.nim * log * format * remove * Update changelog.md Co-authored-by: sandytypical <43030857+xflywind@users.noreply.github.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/std/sums.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/std/sums.nim b/lib/std/sums.nim index b68858ef7..a6ce1b85d 100644 --- a/lib/std/sums.nim +++ b/lib/std/sums.nim @@ -8,6 +8,8 @@ ## Accurate summation functions. +{.deprecated: "use the nimble package `sums` instead.".} + runnableExamples: import std/math |