diff options
-rw-r--r-- | contributing.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contributing.md b/contributing.md index e910dba..e88d0a9 100644 --- a/contributing.md +++ b/contributing.md @@ -277,7 +277,7 @@ that you can click on to open them. ```cpp struct Foo { - int bar; + int bar = 0; std::string baz; }; ``` @@ -285,7 +285,7 @@ that you can click on to open them. ```cpp struct Foo { - int bar = 0; + int bar; std::string baz; }; ``` |