summaryrefslogtreecommitdiff
path: root/src/command.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.zig')
-rw-r--r--src/command.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.zig b/src/command.zig
index 588490c..2e63cea 100644
--- a/src/command.zig
+++ b/src/command.zig
@@ -18,7 +18,7 @@
//!
//! Builtin commands (e.g. `/compact`) register themselves from their own
//! modules. Lua extensions append commands here too: a script's call to
-//! `panto.register_command { name, description, handler }` is harvested by
+//! `panto.ext.register_command { name, description, handler }` is harvested by
//! `lua_runtime.zig`, and `main.zig` registers each via `registerLua`.
//! Such commands carry a `lua_ref`; `dispatch` routes them back into the
//! Lua runtime instead of calling a native `run` function.