@@ -14,9 +14,9 @@ codebase not related to stylistic issues.
1414 * [ Align function arguments vertically] ( #align-function-arguments-vertically )
1515 * [ Initialization lists] ( #initialization-lists )
1616 * [ CamelCase for methods, functions, and classes] ( #camelcase-for-methods-functions-and-classes )
17- * [ snake \_ case for local variables and parameters] ( #snake_case-for-local-variables-and-parameters )
18- * [ snake \_ case \_ for private class fields] ( #snake_case_-for-private-class-fields )
19- * [ snake \_ case for C-like structs] ( #snake_case-for-c-like-structs )
17+ * [ ` snake_case ` for local variables and parameters] ( #snake_case-for-local-variables-and-parameters )
18+ * [ ` snake_case_ ` for private class fields] ( #snake_case_-for-private-class-fields )
19+ * [ ` snake_case ` for C-like structs] ( #snake_case-for-c-like-structs )
2020 * [ Space after ` template ` ] ( #space-after-template )
2121* [ Memory Management] ( #memory-management )
2222 * [ Memory allocation] ( #memory-allocation )
@@ -155,15 +155,15 @@ class FooBar {
155155};
156156```
157157
158- ### snake \_ case for local variables and parameters
158+ ### ` snake_case ` for local variables and parameters
159159
160160``` c++
161161int FunctionThatDoesSomething (const char* important_string) {
162162 const char* pointer_into_string = important_string;
163163}
164164```
165165
166- ### snake\_case\_ for private class fields
166+ ### `snake_case_` for private class fields
167167
168168```c++
169169class Foo {
@@ -172,8 +172,9 @@ class Foo {
172172};
173173```
174174
175- ### snake\_ case for C-like structs
176- For plain C-like structs snake_case can be used.
175+ ### ` snake_case ` for C-like structs
176+
177+ For `plain C-like structs snake_case can be used.
177178
178179``` c++
179180struct foo_bar {
0 commit comments