diff --git a/changelog.md b/changelog.md index 89d8fd4239764..c2a146c01cbc6 100644 --- a/changelog.md +++ b/changelog.md @@ -70,6 +70,8 @@ and `lists.toDoublyLinkedList` convert from `openArray`s; `lists.copy` implements shallow copying; `lists.add` concatenates two lists - an O(1) variation that consumes its argument, `addMoved`, is also supplied. + +- Added `sequtils` import to `prelude`. ## Language changes diff --git a/lib/prelude.nim b/lib/prelude.nim index 47a5af89e81eb..4d8c7d7f09198 100644 --- a/lib/prelude.nim +++ b/lib/prelude.nim @@ -16,8 +16,8 @@ ## Same as: ## ## .. code-block:: nim -## import os, strutils, times, parseutils, hashes, tables, sets +## import os, strutils, times, parseutils, hashes, tables, sets, sequtils ## when not defined(js): import parseopt -import os, strutils, times, parseutils, hashes, tables, sets +import os, strutils, times, parseutils, hashes, tables, sets, sequtils when not defined(js): import parseopt