cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+2 -3
View File
@@ -17,6 +17,5 @@ Parses a trimmed, case-insensitive boolean string.
Truthy tokens are `"1"`, `"true"`, `"yes"`, and `"on"`. Falsey tokens are `"0"`, `"false"`, `"no"`, and `"off"`. Empty or unrecognized strings return the fallback.
```uce
bool enabled = to_bool(context.server->config["FEATURE_ENABLED"], true);
```
:example
print(to_bool("yes") ? "true\n" : "false\n");