From 86b58866404aa1dbc70b88d388f5fc13b4cc9656 Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Sun, 26 Jul 2015 21:05:54 +0200 Subject: [PATCH] BReferenceable docs: Fix a typo and one obvious mixup. --- docs/user/support/Referenceable.dox | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user/support/Referenceable.dox b/docs/user/support/Referenceable.dox index d581576517..2504a1d5f0 100644 --- a/docs/user/support/Referenceable.dox +++ b/docs/user/support/Referenceable.dox @@ -28,7 +28,7 @@ The C++ language provides two main ways of allocating objects: on the stack, and on the heap. Objects created on the heap must be managed by the - application and deleted when they are not needed. Objects allocatede on the + application and deleted when they are not needed. Objects allocated on the stack have a lifetime limited to the execution of the block they are declared in. @@ -197,7 +197,7 @@ The reference to the previously targetted object is released. A reference to the new object is acquired only if \p alreadyHasReference - is true. + is false. */