tools: fix return"" in vdoc html output (fix #24979)
Some checks are pending
vlib modules CI / build-module-docs (push) Waiting to run
Tools CI / tools-linux (gcc) (push) Waiting to run
Tools CI / tools-linux (tcc) (push) Waiting to run
Tools CI / tools-linux (clang) (push) Waiting to run
Tools CI / tools-macos (clang) (push) Waiting to run
Tools CI / tools-windows (gcc) (push) Waiting to run
Tools CI / tools-windows (msvc) (push) Waiting to run
Tools CI / tools-windows (tcc) (push) Waiting to run
Tools CI / tools-docker-ubuntu-musl (push) Waiting to run
Workflow Lint / lint-yml-workflows (push) Waiting to run

This commit is contained in:
Delyan Angelov 2025-07-31 10:33:35 +03:00
parent 10f737e1df
commit 5a4dbf19d0
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
8 changed files with 142 additions and 3 deletions

View file

@ -531,7 +531,7 @@ pub fn new() RE
After an initializer is used, the regex expression must be compiled with:
```v ignore
// compile_opt compile RE pattern string, returning an error if the compilation fails
// compile_opt compile RE pattern string, returning an error if the compilation fails
pub fn (mut re RE) compile_opt(pattern string) !
```