summaryrefslogtreecommitdiff
path: root/src/command.zig
diff options
context:
space:
mode:
authort <t@tjp.lol>2026-06-09 00:00:56 -0600
committert <t@tjp.lol>2026-06-09 08:52:47 -0600
commit97b10466d83d488ad2cb9e084159a445af74c845 (patch)
tree6bea7c23d00ff1178a43e631fc700f210cb7d85b /src/command.zig
parent104001d25c9c8cb5ec45ced1678f7c7b70888808 (diff)
event lifecycle
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.