Skip to content

Commit e6a6185

Browse files
author
Ryan Dwyer
committed
Fix string concatenation syntax
1 parent 5b8de86 commit e6a6185

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/lua/sort/locationselector.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ end
5353
function get_profession_string(profession)
5454
local profession_string = df.profession[profession]:gsub('_', ' ')
5555
local dwarfified_string = profession_string:gsub('[Mm][Aa][Nn]', 'dwarf')
56-
return profession_string + " " + dwarfified_string
56+
return profession_string .. " " .. dwarfified_string
5757
end
5858

5959
function LocationSelectorOverlay:init()

0 commit comments

Comments
 (0)