From 2729369027f8492e563b403e4e606c5b49c04620 Mon Sep 17 00:00:00 2001 From: lagos Date: Tue, 12 Jun 2012 07:35:50 +0000 Subject: [PATCH] Fixes two typos in sample code for evlang. --- contrib/evlang/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/evlang/README b/contrib/evlang/README index edaa7e0d3b..98ea07a72d 100644 --- a/contrib/evlang/README +++ b/contrib/evlang/README @@ -97,7 +97,7 @@ These all return True after successful execution, which makes especially the msg* functions easier to use in a conditional. Let's try it. - @code crate/look = if caller.key=='Superman' and evl.msg("Your gaze burns a small hole.") or evl.msg("Looks robust!") + @code crate/look = caller.key=='Superman' and evl.msg("Your gaze burns a small hole.") or evl.msg("Looks robust!") Now look at the crate. :) @@ -105,5 +105,5 @@ You can (in evlang) use evl.list() to get a list of all methods currently stored use the same look slot on the crate again. But this time we'll use the /debug mode of @code, which means the script will be auto-run immediately and we don't have to look at the create to get a result when developing. -@code/debug create/look = evl.msg(evl.list()) +@code/debug crate/look = evl.msg(evl.list())