fix: correct broken relative link for runtime error documentation in embedding index
The link target for "runtime error" reference was pointing to a flat file path `error-handling.html` which would fail when the page is served from a subdirectory. Changed to `../error-handling.html` to properly resolve relative to the current `embedding/` directory path.
This commit is contained in:
commit
1fa24240ed
@ -151,7 +151,7 @@ fibers all the way back to the main one and returns `WREN_RESULT_RUNTIME_ERROR`.
|
|||||||
Otherwise, when the last fiber successfully returns, it returns
|
Otherwise, when the last fiber successfully returns, it returns
|
||||||
`WREN_RESULT_SUCCESS`.
|
`WREN_RESULT_SUCCESS`.
|
||||||
|
|
||||||
[runtime error]: error-handling.html
|
[runtime error]: ../error-handling.html
|
||||||
|
|
||||||
All code passed to `wrenInterpret()` runs in a special "main" module. That way,
|
All code passed to `wrenInterpret()` runs in a special "main" module. That way,
|
||||||
top-level names defined in one call can be accessed in later ones. It's similar
|
top-level names defined in one call can be accessed in later ones. It's similar
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user