From c9b2bc178e06642c70cae7cfcae53200eea76da4 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sun, 22 Feb 2015 10:15:37 +0000 Subject: [PATCH] Lua Scripts: clarify language --- chapters/lua.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chapters/lua.md b/chapters/lua.md index 778ca1d..fd4e281 100644 --- a/chapters/lua.md +++ b/chapters/lua.md @@ -28,15 +28,15 @@ it provides an interactive tutorial experience. ### Scratch [Scratch](https://scratch.mit.edu) is a good resource when starting from absolute basics, learning the problem solving techniques required to program.\\ -Programming is all about breaking down problems into computable steps.\\ +Programming is all about breaking down problems into steps a computer can manage.\\ Scratch is **designed to teach children** how to program, it isn't a serious programming language. Tools ----- A text editor with code highlighting is sufficient for writing scripts in Lua. -Code highlighting gives different words and characters different colors in order to -make it easier to read the code and spot any mistakes. +Code highlighting gives different colors to different words and characters +depending on what they mean. This allows you to spot mistakes. {% highlight lua %} function ctf.post(team,msg)