about summary refs log tree commit diff stats
path: root/example/jitter/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'example/jitter/types.py')
-rw-r--r--example/jitter/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jitter/types.py b/example/jitter/types.py
index e714372c..c37c3b84 100644
--- a/example/jitter/types.py
+++ b/example/jitter/types.py
@@ -239,7 +239,7 @@ print "3 arguments argv type:", argv_t
 # alloc argv somewhere
 argv = argv_t.lval(vm)
 
-# Auto alloc with a buffer type
+# Auto alloc with the MemStr.from_str helper
 MemStrAnsi = Str().lval
 argv[0].val = MemStrAnsi.from_str(vm, "./my-program").get_addr()
 argv[1].val = MemStrAnsi.from_str(vm, "arg1").get_addr()