aboutsummaryrefslogtreecommitdiff
path: root/contributing.md
diff options
context:
space:
mode:
Diffstat (limited to 'contributing.md')
-rw-r--r--contributing.md4
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;
};
```