diff options
-rw-r--r-- | src/scripts/elua/apps/gendoc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/elua/apps/gendoc.lua b/src/scripts/elua/apps/gendoc.lua index 5db424393e..5d4d6742bb 100644 --- a/src/scripts/elua/apps/gendoc.lua +++ b/src/scripts/elua/apps/gendoc.lua | |||
@@ -390,10 +390,10 @@ local build_ref = function() | |||
390 | eolian.typedecl_all_enums_get():to_array()) | 390 | eolian.typedecl_all_enums_get():to_array()) |
391 | 391 | ||
392 | build_reftable(f, "Constants", "Constant name", "constant", | 392 | build_reftable(f, "Constants", "Constant name", "constant", |
393 | eolian.variable_all_constants_get():to_array()) | 393 | dtree.Variable.all_constants_get()) |
394 | 394 | ||
395 | build_reftable(f, "Globals", "Global name", "global", | 395 | build_reftable(f, "Globals", "Global name", "global", |
396 | eolian.variable_all_globals_get():to_array()) | 396 | dtree.Variable.all_globals_get()) |
397 | 397 | ||
398 | f:finish() | 398 | f:finish() |
399 | end | 399 | end |