aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-06 16:39:05 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-06 16:39:05 +0100
commit9e9549a8b70454610eec1b74c44eeaa78507b92c (patch)
tree40eacad0cbfa96d6e784f51c3f3dde827f24d67f
parent0438e0f4d129431f7ecef7996a11b301eda882fb (diff)
Used <code></code>
-rw-r--r--contributing.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/contributing.md b/contributing.md
index 014df51..8da91ee 100644
--- a/contributing.md
+++ b/contributing.md
@@ -49,7 +49,7 @@ that you can click on to open them.
class Cars {};
```
</td></tr></table></details>
-- Source files (.cpp, .hpp) contain the following types of comments:
+- Source files (<code>.cpp</code>, <code>.hpp</code>) contain the following types of comments:
- What is the code supposed to do (optional)
- Implementation details (if applicable)
- Header files (.h) contain the following types of comments:
@@ -479,7 +479,7 @@ that you can click on to open them.
```
</td></tr></table></details>
- <details><summary>
- File names (.h, .cpp, .hpp) should be written using CamelCase
+ File names (<code>.h</code>, <code>.cpp</code>, <code>.hpp</code>) should be written using CamelCase
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp
@@ -519,7 +519,7 @@ that you can click on to open them.
```
</td></tr></table></details>
- <details><summary>
- Use angle brackets (`<>`) for including libraries and double quotes (`""`) for including local files.
+ Use angle brackets (<code><></code>) for including libraries and double quotes (<code>""</code>) for including local files.
</summary><table><tr><th>Good</th><th>Bad</th></tr><tr><td>
```cpp