diff options
author | inoas <mail@inoas.com> | 2022-12-23 11:04:30 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-12-23 12:00:27 +0000 |
commit | 8ab43ccb44cf9d913d01b1ae6ff780ee08e4e126 (patch) | |
tree | 3855c5325fb510d5a91dfc1e651b648e62edd41b /CHANGELOG.md | |
parent | 9dc8bc4b3e9b58396ceae3e2bb466c1eb4679f86 (diff) | |
download | gleam_stdlib-8ab43ccb44cf9d913d01b1ae6ff780ee08e4e126.tar.gz gleam_stdlib-8ab43ccb44cf9d913d01b1ae6ff780ee08e4e126.zip |
fix erlang string.inspect and io.debug to correctly escape ", \, \r, \n, \r\n and \t
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3085f68..2a6d930 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ `Intl.Segmenter` class. - The `string` module gains `to_utf_codepoints`, `from_utf_codepoints`, and `utf_codepoint_to_int` functions. +- Fixed `string.inspect`'s escaping of `"`, `\`, `\n`, `\r`, `\r\n`, and `\t`, + which in turn fixes `io.debug`'s output of such strings. ## v0.25.0 - 2022-11-19 |