Browse Source

Merge pull request #103148 from nathanhoad/fix-docs-typo-editortranslationplugin

Fix typo in EditorTranslationParserPlugin docs
Rémi Verschelde 6 tháng trước cách đây
mục cha
commit
0c3787a152
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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