1
0

Merge pull request #1086 from qaisjp/patch-1

Fix typo in handy_functions.lua
This commit is contained in:
Mattes D 2014-06-12 16:02:22 +02:00
commit 657bde3a0f

View File

@ -6,7 +6,7 @@ function GetHandyVersion()
return HANDY_VERSION
end
-- Checks if handy is in proper version
function CheckForRequiedVersion( inVersion )
function CheckForRequiredVersion( inVersion )
if( inVersion > HANDY_VERSION ) then return false end
return true
end
@ -213,4 +213,4 @@ end
function BoolToString( inValue )
if( inValue == true ) then return 1 end
return 0
end
end