Skip to content

Commit

Permalink
doc: add missing semis after classes
Browse files Browse the repository at this point in the history
Signed-off-by: Darshan Sen <raisinten@gmail.com>

PR-URL: #38931
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Zijian Liu <lxxyxzj@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
RaisinTen authored and targos committed Jun 11, 2021
1 parent 0bdeeda commit f903ad8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/guides/cpp-style-guide.md
Expand Up @@ -179,7 +179,7 @@ For plain C-like structs snake_case can be used.
```cpp
struct foo_bar {
int name;
}
};
```
### Space after `template`
Expand All @@ -188,7 +188,7 @@ struct foo_bar {
template <typename T>
class FancyContainer {
...
}
};
```

## Memory management
Expand Down

0 comments on commit f903ad8

Please sign in to comment.