From 53e4085ddcb698a547454f0245e76bc32bf6f209 Mon Sep 17 00:00:00 2001 From: Artem Yurchenko Date: Tue, 28 Mar 2023 22:26:22 +0200 Subject: [PATCH] doc: fix documentation examples (#17804) --- doc/docs.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/docs.md b/doc/docs.md index 9bfdf68126..d0cf21435a 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -4886,7 +4886,6 @@ Documentation for each function/type/const must be placed right before the decla ```v // clearall clears all bits in the array - fn clearall() { } ``` @@ -4899,7 +4898,6 @@ span to the documented function using single line comments: ```v // copy_all recursively copies all elements of the array by their value, // if `dupes` is false all duplicate values are eliminated in the process. - fn copy_all(dupes bool) { // ... }