From 55e8807aba5849b543fe41607409f965efc004da Mon Sep 17 00:00:00 2001 From: ruby0x1 Date: Mon, 9 Aug 2021 17:24:47 -0700 Subject: [PATCH] fix #1039 clarity in header comments --- src/vm/wren_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vm/wren_core.h b/src/vm/wren_core.h index bbba86cf..294a88c4 100644 --- a/src/vm/wren_core.h +++ b/src/vm/wren_core.h @@ -15,7 +15,7 @@ // There is one limitation, though. Methods written in C cannot call Wren ones. // They can only be the top of the callstack, and immediately return. This // makes it difficult to have primitive methods that rely on polymorphic -// behavior. For example, `IO.write` should call `toString` on its argument, +// behavior. For example, `System.print` should call `toString` on its argument, // including user-defined `toString` methods on user-defined classes. void wrenInitializeCore(WrenVM* vm);