From 001144fa82fed2afa2b469d8b13478d2ac332e6d Mon Sep 17 00:00:00 2001 From: Ken Date: Sat, 13 Aug 2022 16:07:08 +0900 Subject: [PATCH] doc: fix a typo in the `-no-preludes` option description in `v help build-c` (#15404) --- cmd/v/help/build-c.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/v/help/build-c.txt b/cmd/v/help/build-c.txt index 9c44bfcd9d..64f693bb55 100644 --- a/cmd/v/help/build-c.txt +++ b/cmd/v/help/build-c.txt @@ -215,7 +215,7 @@ see also `v help build`. -live Build the executable with live capabilities (`[live]`). - -no-prelude + -no-preludes Prevents V from generating a prelude in generated .c files, useful for freestanding targets where eg. you replace C standard library with your own, or some definitions/headers break something.