Fixes tag typos: deprecatd -> deprecated

This commit is contained in:
Timothy Qiu 2013-08-01 17:09:23 +08:00
parent 88e11cab84
commit f0ee1e62c0
2 changed files with 4 additions and 4 deletions

View File

@ -95,13 +95,13 @@ public:
/** returns the tile that belongs to a certain position of the grid */
Quad3 getTile(const Point& position) const;
/** @deprecatd Use getTile() instead */
/** @deprecated Use getTile() instead */
CC_DEPRECATED_ATTRIBUTE Quad3 tile(const Point& position) { return getTile(position); }
/** returns the non-transformed tile that belongs to a certain position of the grid */
Quad3 getOriginalTile(const Point& position) const;
/** @deprecatd Use getOriginalTile() instead */
/** @deprecated Use getOriginalTile() instead */
CC_DEPRECATED_ATTRIBUTE Quad3 originalTile(const Point& position) { return getOriginalTile(position); }
/** sets a new tile to a certain position of the grid */

View File

@ -62,7 +62,7 @@ public:
/** @deprecated Use getInstance() instead */
CC_DEPRECATED_ATTRIBUTE static AnimationCache* sharedAnimationCache() { return AnimationCache::getInstance(); }
/** @deprecatd Use destroyInstance() instead */
/** @deprecated Use destroyInstance() instead */
CC_DEPRECATED_ATTRIBUTE static void purgeSharedAnimationCache() { return AnimationCache::destroyInstance(); }
bool init(void);
@ -107,4 +107,4 @@ private:
NS_CC_END
#endif // __CC_ANIMATION_CACHE_H__
#endif // __CC_ANIMATION_CACHE_H__