diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-08-24 19:38:30 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 13:38:30 +0200 |
commit | b6bfe38ff5283f77d5e5e78da06d2710bc16afb6 (patch) | |
tree | b1a8213c8627931d91737f27cb4bda48c8579657 /lib/std/syncio.nim | |
parent | 12f23d5ae8e4209dc9b1f40a0b792c6063ba78c5 (diff) | |
download | Nim-b6bfe38ff5283f77d5e5e78da06d2710bc16afb6.tar.gz |
move formatfloat out of system (#20195)
* move formatfloat out of system * fixes doc * Update changelog.md * careless * fixes * deprecate system/formatfloat * better handling
Diffstat (limited to 'lib/std/syncio.nim')
-rw-r--r-- | lib/std/syncio.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/syncio.nim b/lib/std/syncio.nim index eab96254a..22e981198 100644 --- a/lib/std/syncio.nim +++ b/lib/std/syncio.nim @@ -11,7 +11,7 @@ include system/inclrtl import std/private/since -import system/formatfloat +import std/formatfloat # ----------------- IO Part ------------------------------------------------ type |