diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-06 12:08:33 +0100 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-06 12:08:33 +0100 | 
| commit | 72095ca7d6e2b316202d963d07065993be0c5f45 (patch) | |
| tree | 542e9afcd8244a0b3da2325b6cae9817f783ad18 | |
| parent | db7fd6a24c4da44fed3cee97d24f1cbda1471137 (diff) | |
fix code style
| -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;    };    ``` |