summary refs log tree commit diff stats
path: root/tests/ambsym/tambsym2.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ambsym/tambsym2.nim')
-rw-r--r--tests/ambsym/tambsym2.nim8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ambsym/tambsym2.nim b/tests/ambsym/tambsym2.nim
index 745427c54..8e288e73a 100644
--- a/tests/ambsym/tambsym2.nim
+++ b/tests/ambsym/tambsym2.nim
@@ -8,12 +8,12 @@ type
   TMyType = object
     len: int
     data: string
-    
+
 proc len(x: TMyType): int {.inline.} = return x.len
 
-proc x(s: TMyType, len: int) = 
-  writeln(stdout, len(s))
-  
+proc x(s: TMyType, len: int) =
+  writeLine(stdout, len(s))
+
 var
   m: TMyType
 m.len = 7