summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorkonsumlamm <44230978+konsumlamm@users.noreply.github.com>2021-01-02 20:28:59 +0100
committerGitHub <noreply@github.com>2021-01-02 20:28:59 +0100
commit2eccef7ad6dd2941bcc78692b499b4cb269e9a2a (patch)
treeebf98be56e70fae670523839658aa25820f6b784 /tests
parente869767aa72a71e673c2e8fdc51925f28c13d432 (diff)
downloadNim-2eccef7ad6dd2941bcc78692b499b4cb269e9a2a.tar.gz
Algorithm improvements (#16529)
* Improve documentation for algorithm

Remove unused import in algorithm tests
Improve formatting

* Reapply fix for reverse on empty openArray

* Use 3rd person singular

Add more explanations.
Diffstat (limited to 'tests')
-rw-r--r--tests/stdlib/talgorithm.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stdlib/talgorithm.nim b/tests/stdlib/talgorithm.nim
index 148a65289..47a8d327b 100644
--- a/tests/stdlib/talgorithm.nim
+++ b/tests/stdlib/talgorithm.nim
@@ -3,7 +3,7 @@ discard """
 '''
 """
 #12928,10456
-import sequtils, strutils, algorithm, json
+import sequtils, algorithm, json
 
 proc test() = 
   try: 
@@ -14,7 +14,7 @@ proc test() =
     echo prefixes
   except:
     discard
-  
+
 test()
 
 block: