summary refs log tree commit diff stats
path: root/tests/generics/tgeneric1.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/generics/tgeneric1.nim')
-rw-r--r--tests/generics/tgeneric1.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/generics/tgeneric1.nim b/tests/generics/tgeneric1.nim
index 5d20a864b..5349f8f1d 100644
--- a/tests/generics/tgeneric1.nim
+++ b/tests/generics/tgeneric1.nim
@@ -9,7 +9,7 @@ type
   TBinHeap[T] = object
     heap: seq[TNode[T]]
     last: int
-  
+
   PBinHeap[T] = ref TBinHeap[T]
 
 proc newBinHeap*[T](heap: var PBinHeap[T], size: int) =
@@ -17,7 +17,7 @@ proc newBinHeap*[T](heap: var PBinHeap[T], size: int) =
   heap.last = 0
   newSeq(heap.heap, size)
   #newSeq(heap.seq, size)
- 
+
 proc parent(elem: int): int {.inline.} =
   return (elem-1) div 2