From 990dccdd76c666f1f13336c36130498b85160935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sun, 12 Feb 2012 22:46:57 +0100 Subject: [PATCH] Documentation: better word order. --- src/Object.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Object.h b/src/Object.h index 8becc2add..ffd5b0d21 100644 --- a/src/Object.h +++ b/src/Object.h @@ -191,7 +191,7 @@ class MAGNUM_EXPORT Object { * * Recursively calls setDirty() on every child. If the object is already * marked as dirty, the function does nothing. - * @attention Reimplementations must also call this function! + * @attention Reimplementations must call also this function! */ virtual void setDirty(); @@ -201,7 +201,7 @@ class MAGNUM_EXPORT Object { * Recursively calls setClean() on every parent. Default implementation * only marks the object as clean, but if the object does any caching, * this function should be reimplemented to regenerate the cache. - * @attention Reimplementations must also call this function! + * @attention Reimplementations must call also this function! */ virtual void setClean();