mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 16:33:30 +00:00
Fix misc. source comment typos
Found using `codespell -q 3 -S ./thirdparty,*.po -L ang,ba,cas,dof,doubleclick,fave,hist,leapyear,lod,nd,numer,ois,paket,seeked,sinc,switchs,te,uint -D ~/Projects/codespell/codespell_lib/data/dictionary.txt `
This commit is contained in:
parent
24e1039eb6
commit
91ecd7b6a6
26 changed files with 42 additions and 38 deletions
|
@ -200,7 +200,7 @@ void PluginScriptLanguage::get_recognized_extensions(List<String> *p_extensions)
|
|||
}
|
||||
|
||||
void PluginScriptLanguage::get_public_functions(List<MethodInfo> *p_functions) const {
|
||||
// TODO: provid this statically in `godot_pluginscript_language_desc` ?
|
||||
// TODO: provide this statically in `godot_pluginscript_language_desc` ?
|
||||
if (_desc.get_public_functions) {
|
||||
Array functions;
|
||||
_desc.get_public_functions(_data, (godot_array *)&functions);
|
||||
|
@ -212,7 +212,7 @@ void PluginScriptLanguage::get_public_functions(List<MethodInfo> *p_functions) c
|
|||
}
|
||||
|
||||
void PluginScriptLanguage::get_public_constants(List<Pair<String, Variant> > *p_constants) const {
|
||||
// TODO: provid this statically in `godot_pluginscript_language_desc` ?
|
||||
// TODO: provide this statically in `godot_pluginscript_language_desc` ?
|
||||
if (_desc.get_public_constants) {
|
||||
Dictionary constants;
|
||||
_desc.get_public_constants(_data, (godot_dictionary *)&constants);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue