diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-06-29 00:34:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-29 09:34:05 +0200 |
commit | 1b41c3122be1fa2628d814893a4f3a1196b762fc (patch) | |
tree | f8ca6776bdf580ce9904575316b96c9d6d61f379 /changelog.md | |
parent | 5d5df4a39413b76d6131cb3d85e606e255d54b22 (diff) | |
download | Nim-1b41c3122be1fa2628d814893a4f3a1196b762fc.tar.gz |
fix #13432 typetraits.$: $(int,) is now (int,); $tuple[] is now tuple[] (#14799)
* typetraits.$: $(int,) is now (int,); $tuple[] is now tuple[] * changelog
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 54996ea34..d5f3c8aa9 100644 --- a/changelog.md +++ b/changelog.md @@ -115,6 +115,7 @@ - `macros.newLit` now preserves named vs unnamed tuples; use `-d:nimHasWorkaround14720` to keep old behavior - Add `random.gauss`, that uses the ratio of uniforms method of sampling from a Gaussian distribution. - Add `typetraits.elementType` to get element type of an iterable. +- `typetraits.$`: `$(int,)` is now `"(int,)"`; `$tuple[]` is now `"tuple[]"` ## Language changes - In the newruntime it is now allowed to assign to the discriminator field |