From 504ec54be1a2962f8e0e7de41e538584986e4423 Mon Sep 17 00:00:00 2001 From: Kim Shrier Date: Sat, 18 Jan 2025 14:59:44 -0700 Subject: [PATCH] flag: fix minor typo (#23512) --- vlib/flag/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/flag/README.md b/vlib/flag/README.md index 02ee2f1ece..f4c20fa3ee 100644 --- a/vlib/flag/README.md +++ b/vlib/flag/README.md @@ -1,7 +1,7 @@ # Description A V module to parse, map and document different command line option flag styles -(as typically found in in `os.args`). +(as typically found in `os.args`). `flag.to_struct[T](os.args)!` can map flags into user defined V `struct`s via compile time reflection.