From b65711cf1c7990bb19c8e099dc5ec6cbf84c7a6d Mon Sep 17 00:00:00 2001 From: Ryan Ward Date: Sun, 11 Jun 2017 22:54:37 -0400 Subject: [PATCH] edit typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a56fc30..3ed1047 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ count=0 loop=multi:newLoop(function(dt,self) -- dt is delta time and self is a reference to itself count=count+1 if count > 10 then - self:Break() -- All methods on the multi objects are Proper case, where as methods on the multi or process/queuer namespace are camel case + self:Break() -- All methods on the multi objects are upper camel case, where as methods on the multi or process/queuer namespace are lower camel case -- self:Break() will stop the loop and trigger the OnBreak(func) method -- Stopping is the act of Pausing and deactivating the object! All objects can have the multiobj:Break() command on it! else