From 74017cb0202811587c0227b9ff50ca9ae12c9a8e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 22 Oct 2011 01:53:35 +0000 Subject: header cleanup and typo's --- intern/memutil/MEM_SmartPtr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/memutil/MEM_SmartPtr.h') diff --git a/intern/memutil/MEM_SmartPtr.h b/intern/memutil/MEM_SmartPtr.h index 50d69cfd8dd..ee3c4f22536 100644 --- a/intern/memutil/MEM_SmartPtr.h +++ b/intern/memutil/MEM_SmartPtr.h @@ -49,14 +49,14 @@ * the Standard Template Library but without the painful get() * semantics to access the internal c style pointer. * - * It is often useful to explicitely decalre ownership of memory + * It is often useful to explicitly declare ownership of memory * allocated on the heap within class or function scope. This * class helps you to encapsulate this ownership within a value * type. When an instance of this class goes out of scope it * makes sure that any memory associated with it's internal pointer * is deleted. It can help to inform users of an aggregate class * that it owns instances of it's members and these instances - * should not be shared. This is not reliably enforcable in C++ + * should not be shared. This is not reliably enforceable in C++ * but this class attempts to make the 1-1 relationship clear. * * @section Example usage -- cgit v1.2.3