summary refs log tree commit diff stats
path: root/tests/lookups/tkoeniglookup.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lookups/tkoeniglookup.nim')
-rw-r--r--tests/lookups/tkoeniglookup.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lookups/tkoeniglookup.nim b/tests/lookups/tkoeniglookup.nim
index 6c42798ae..8b140cceb 100644
--- a/tests/lookups/tkoeniglookup.nim
+++ b/tests/lookups/tkoeniglookup.nim
@@ -9,7 +9,7 @@ type
   TMyObj = object
     x, y: int
 
-proc `$`*(a: TMyObj): string = 
+proc `$`*(a: TMyObj): string =
   result = "x: " & $a.x & " y: " & $a.y
 
 var a: TMyObj