diff options
author | metagn <metagngn@gmail.com> | 2023-04-08 12:42:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-08 11:42:17 +0200 |
commit | 16bc546aea17921caee204bc55145717ab480dd6 (patch) | |
tree | f747899d591b80cfc7466f8e477b6194078006fc /lib | |
parent | 686c75cef032481630e27dad3731df98e067b75e (diff) | |
download | Nim-16bc546aea17921caee204bc55145717ab480dd6.tar.gz |
remove useVersion (#21626)
test removing useVersion
Diffstat (limited to 'lib')
-rw-r--r-- | lib/std/private/since.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/private/since.nim b/lib/std/private/since.nim index 5b22b6391..1a6dd02cb 100644 --- a/lib/std/private/since.nim +++ b/lib/std/private/since.nim @@ -1,5 +1,5 @@ ##[ -`since` is used to emulate older versions of nim stdlib with `--useVersion`, +`since` is used to emulate older versions of nim stdlib, see `tuse_version.nim`. If a symbol `foo` is added in version `(1,3,5)`, use `{.since: (1.3.5).}`, not |