From 6eecfc31d64271b2e05968b972b2004ec14a2d3f Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sun, 2 Feb 2025 22:42:57 +1100 Subject: [PATCH] Tweak --- _c_api/{debug.md => output.md} | 0 _getting_started/quick-start-guide.md | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename _c_api/{debug.md => output.md} (100%) diff --git a/_c_api/debug.md b/_c_api/output.md similarity index 100% rename from _c_api/debug.md rename to _c_api/output.md diff --git a/_getting_started/quick-start-guide.md b/_getting_started/quick-start-guide.md index f664e6f..01fa424 100644 --- a/_getting_started/quick-start-guide.md +++ b/_getting_started/quick-start-guide.md @@ -20,7 +20,7 @@ print "Hello World!"; The `assert` keyword takes two values as parameters, separated by a comma. If the first value is falsy or `null`, the optional second parameter is sent to stderr by default, or can be redirected elsewhere using the [output C API](/c_api/output). If no second parameter is provided, a generic message is used instead. -An option to disable the `assert` keyword during compilation is provided in the [parser C API](c_api/parser). +An option to disable the `assert` keyword during compilation is provided in the [parser C API](/c_api/parser). ``` //nothing happens