summaryrefslogtreecommitdiff
path: root/examples/resources/lib
diff options
context:
space:
mode:
Diffstat (limited to 'examples/resources/lib')
-rw-r--r--examples/resources/lib/utillib.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/resources/lib/utillib.lua b/examples/resources/lib/utillib.lua
index ed4e787..94e33f9 100644
--- a/examples/resources/lib/utillib.lua
+++ b/examples/resources/lib/utillib.lua
@@ -131,7 +131,7 @@ function utillib.toBoolean( v )
return false
end
-function utillib.boo2Number( bool )
+function utillib.bool2Number( bool )
return bool and 1 or 0
end