Browse Source

Fix typo in EditorTranslationParserPlugin docs

Nathan Hoad 6 months ago
parent
commit
b3aeaa66d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/classes/EditorTranslationParserPlugin.xml

+ 1 - 1
doc/classes/EditorTranslationParserPlugin.xml

@@ -19,7 +19,7 @@
 		    var text = file.get_as_text()
 		    var split_strs = text.split(",", false)
 		    for s in split_strs:
-		        msgids.append(PackedStringArray([s]))
+		        ret.append(PackedStringArray([s]))
 		        #print("Extracted string: " + s)
 
 		    return ret