diff --git a/CODING_STYLE.md b/CODING_STYLE.md index 5e157e6535..4b7bf2a7c8 100644 --- a/CODING_STYLE.md +++ b/CODING_STYLE.md @@ -71,9 +71,9 @@ protected: /* After adding all the methods, add the ivars */ /* all ivars must start with _ */ /* Do not use Hungarian notation */ - TextureAtlas* _textureAtlas; /// SpriteBatchNode texture atlas (weak reference) - int _atlasIndex; /// Absolute (real) Index on the SpriteSheet - SpriteBatchNode* _batchNode; /// Used batch node (weak reference) + TextureAtlas* _textureAtlas; + int _atlasIndex; + SpriteBatchNode* _batchNode; }; ```