diff options
author | Nenad Stojanovikj <nekk1@live.com> | 2018-08-27 23:54:13 +0200 |
---|---|---|
committer | Nenad Stojanovikj <nekk1@live.com> | 2018-08-27 23:54:13 +0200 |
commit | 224e52e7c6500943500493194c1f536c23bcf0b1 (patch) | |
tree | 9d6b31c63e9ed428b5b4a5b079db6560afde02e5 /docs | |
parent | 2c7512b85ccc652745db6c5ddc45932f66b7129d (diff) |
[docs/code_guideline] Fix interface file naming convention
Fixes the docs so they reflect the explanation
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CODE_GUIDELINES.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CODE_GUIDELINES.md b/docs/CODE_GUIDELINES.md index 42d242ba69..b81d8c43b6 100644 --- a/docs/CODE_GUIDELINES.md +++ b/docs/CODE_GUIDELINES.md @@ -277,7 +277,7 @@ enum Dummy ``` ### 11.4. Interfaces -Use CamelCase for interface names and they have to be prefixed with an uppercase I. Filename has to match the interface name without the prefixed I, e.g. ILogger.h +Use CamelCase for interface names and they have to be prefixed with an uppercase I. Filename has to match the interface name without the prefixed I, e.g. Logger.h ```cpp class ILogger { |