diff --git a/bestpractices/c++practices.md b/bestpractices/c++practices.md index f7f5c48..a4abf0d 100644 --- a/bestpractices/c++practices.md +++ b/bestpractices/c++practices.md @@ -268,7 +268,7 @@ auto xyz = _cast(...); auto xyz = getAnything(...); ``` -Counter examples: +Examples with unclear types: ```c++ auto value = randomThing.weirdProperty->getValue(); // non-obvious type