about summary refs log tree commit diff stats
path: root/lisp.tlv
diff options
context:
space:
mode:
Diffstat (limited to 'lisp.tlv')
-rw-r--r--lisp.tlv10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp.tlv b/lisp.tlv
index 0bfd93c..92d23f8 100644
--- a/lisp.tlv
+++ b/lisp.tlv
@@ -80,7 +80,7 @@
   check_eq:
     >function check_eq(x, expected, msg)
     >  if x == expected then
-    >    window:addch('.')
+    >    Window:addch('.')
     >  else
     >    print('F - '..msg)
     >    print('  expected '..tostring(expected)..' but got '..x)
@@ -147,8 +147,8 @@
     >  return result
     >end
 - __teliva_timestamp: original
-  window:
-    >window = curses.stdscr()
+  Window:
+    >Window = curses.stdscr()
 - __teliva_timestamp: original
   render:
     >function render(window)
@@ -195,8 +195,8 @@
     >  init_colors()
     >
     >  while true do
-    >    render(window)
-    >    update(window)
+    >    render(Window)
+    >    update(Window)
     >  end
     >end
 - __teliva_timestamp: original