1
0

Fix typo in handy_functions.lua

This commit is contained in:
Qais Patankar 2014-06-12 15:01:24 +01:00
parent a6a87f1996
commit 3e7384d921

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