C.8: Fix typo in text

This commit is contained in:
Severin Meyer 2016-11-17 14:43:03 +01:00
parent b516c49efc
commit edb59eea86

View File

@ -3731,7 +3731,7 @@ There is nothing wrong with this code as far as the C++ language rules are conce
but nearly everything is wrong from a design perspective.
The private data is hidden far from the public data.
The data is split in different parts of the class declaration.
Different parts of the data has difference access.
Different parts of the data have different access.
All of this decreases readability and complicates maintenance.
##### Note