You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user