summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lua_runtime.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua_runtime.zig b/src/lua_runtime.zig
index 7363281..7c63ebf 100644
--- a/src/lua_runtime.zig
+++ b/src/lua_runtime.zig
@@ -12,7 +12,7 @@
//!
//! libpanto delivers all tool calls targeting Lua-defined tools in one
//! `invoke_batch` per turn, on a single thread (see
-//! `libpanto/src/tool_source.zig`). This runtime then runs each call as
+//! `code.tjp.lol/libpantograph.git/src/tool_source.zig`). This runtime then runs each call as
//! a Lua *coroutine*. When (later) we wire in libuv via `luv`, a yield
//! inside a coroutine returns control to the runtime, which drives
//! `uv.run()` until any coroutine is resumable.