diff --git a/include/openspace/util/time.h b/include/openspace/util/time.h index 2e1b48c6c4..2db604e328 100644 --- a/include/openspace/util/time.h +++ b/include/openspace/util/time.h @@ -140,10 +140,11 @@ public: /** * Returns the Lua library that contains all Lua functions available to change the * current time, retrieve the current time etc. The functions contained are - * - time_setDeltaTime - * - time_deltaTime - * - time_currentTime - * - time_currentTimeUTC + * - openspace::luascriptfunctions::time_setDeltaTime + * - openspace::luascriptfunctions::time_deltaTime + * - openspace::luascriptfunctions::time_setTime + * - openspace::luascriptfunctions::time_currentTime + * - openspace::luascriptfunctions::time_currentTimeUTC * \return The Lua library that contains all Lua functions available to change the * Time singleton */ diff --git a/src/util/time.cpp b/src/util/time.cpp index 854b38d70c..dad1f20f43 100644 --- a/src/util/time.cpp +++ b/src/util/time.cpp @@ -139,7 +139,7 @@ int time_currentTimeUTC(lua_State* L) { return 1; } -} // namespace luascripts +} // namespace luascriptfunctions Time* Time::_instance = nullptr;