From b7dd6069404386c275b0a02575e7ce94e1dd950d Mon Sep 17 00:00:00 2001 From: jmgomez Date: Thu, 14 Sep 2023 17:55:41 +0100 Subject: [PATCH] typo --- doc/manual_experimental.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual_experimental.md b/doc/manual_experimental.md index 08e543b22ce3..7f1948eb1aba 100644 --- a/doc/manual_experimental.md +++ b/doc/manual_experimental.md @@ -2405,7 +2405,7 @@ type proc makeCppStruct(a:cint = 5, b:cstring = "hello"): CppStruct {.importcpp: "CppStruct(@)", constructor.} (proc (s:CppStruct) = echo "hello")(makeCppStruct()) -#if you remove a default value from the constructor and pass it to the call. The C++ compiler #will complain. +#if one remove a default value from the constructor and pass it to the call. The C++ compiler will complain. ```