Codechange: Unify naming of squirrel built-in types in Script API docs

This commit is contained in:
frosch
2024-03-24 19:02:16 +01:00
committed by Peter Nelson
parent e436e2ef40
commit dfa2622153
6 changed files with 21 additions and 11 deletions

View File

@@ -112,14 +112,14 @@ public:
* @param parameter Which parameter to set.
* @param value The value of the parameter. Has to be string, integer or an instance of the class ScriptText.
*/
void SetParam(int parameter, Object value);
void SetParam(int parameter, object value);
/**
* Add a value as parameter (appending it).
* @param value The value of the parameter. Has to be string, integer or an instance of the class ScriptText.
* @return The same object as on which this is called, so you can chain.
*/
ScriptText *AddParam(Object value);
ScriptText *AddParam(object value);
#endif /* DOXYGEN_API */
/**