summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorflywind <43030857+xflywind@users.noreply.github.com>2020-11-27 10:53:30 +0800
committerGitHub <noreply@github.com>2020-11-27 10:53:30 +0800
commitc0215d8d0dcefaf963f6138e4fcf48dee8ef0199 (patch)
tree0ce22141c986115ce515a0e4fe1ad49e304dba63
parent52829fc8d1324c8192bc1674ff47e504648675fa (diff)
downloadNim-c0215d8d0dcefaf963f6138e4fcf48dee8ef0199.tar.gz
clean up changelog (#16155)
* fix rope index

* add testcase

* fix ropes format

* add `**` to jsffi

* add testcase

* changelog

* clean up changelog

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
-rw-r--r--changelog.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/changelog.md b/changelog.md
index ba1bc9438..d62e96bbe 100644
--- a/changelog.md
+++ b/changelog.md
@@ -31,12 +31,12 @@
 - Removed deprecated `iup` module from stdlib, it has already moved to
   [nimble](https://github.com/nim-lang/iup).
 
-- nodejs now supports osenv: `getEnv`, `putEnv`, `envPairs`, `delEnv`, `existsEnv`
+- `nodejs` backend now supports osenv: `getEnv`, `putEnv`, `envPairs`, `delEnv`, `existsEnv`.
 
 - `doAssertRaises` now correctly handles foreign exceptions.
 
 - Added `asyncdispatch.activeDescriptors` that returns the number of currently
-  active async event handles/file descriptors
+  active async event handles/file descriptors.
 
 - ``--gc:orc`` is now 10% faster than previously for common workloads. If
   you have trouble with its changed behavior, compile with ``-d:nimOldOrc``.
@@ -44,15 +44,17 @@
 
 - `os.FileInfo` (returned by `getFileInfo`) now contains `blockSize`,
   determining preferred I/O block size for this file object.
+
 - `repr` now doesn't insert trailing newline; previous behavior was very inconsistent,
   see #16034. Use `-d:nimLegacyReprWithNewline` for previous behavior.
 
 - Added `**` to jsffi.
+
 - `writeStackTrace` is available in JS backend now.
 
 ## Language changes
 
-- `nimscript` now handles `except Exception as e`
+- `nimscript` now handles `except Exception as e`.
 
 - The `cstring` doesn't support `[]=` operator in JS backend.