summaryrefslogtreecommitdiff
path: root/include/tools/rtti.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/tools/rtti.hxx')
-rw-r--r--include/tools/rtti.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/rtti.hxx b/include/tools/rtti.hxx
index 92555a26c326..013552c66f79 100644
--- a/include/tools/rtti.hxx
+++ b/include/tools/rtti.hxx
@@ -139,7 +139,7 @@ inline const T1* rttiCast(const T2* pObj, const TypeId& rTypeId) {
#define HAS_BASE( T, pObj ) \
( pObj && (pObj)->IsA( TYPE(T) ) )
-/** Check whether a pointer is targetting and object of type T. */
+/** Check whether a pointer is targeting an object of type T. */
#define IS_TYPE(T,pObj) \
( pObj && (pObj)->Type() == TYPE(T) )