mirror of
https://github.com/akaAgar/the-universal-mission-for-dcs-world.git
synced 2026-08-25 11:21:12 +00:00
Fixed bug in DCSEx.string.firstToUpper
This commit is contained in:
@@ -16,7 +16,7 @@ DCSEx.string = {}
|
|||||||
-- @return A string, with the first letter cast to upper case
|
-- @return A string, with the first letter cast to upper case
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
function DCSEx.string.firstToUpper(str)
|
function DCSEx.string.firstToUpper(str)
|
||||||
return (str:gsub("^%l", DCSEx.string.upper))
|
return (str:gsub("^%l", string.upper))
|
||||||
end
|
end
|
||||||
|
|
||||||
-------------------------------------
|
-------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user