From 316f4cef77164a37b6a1a8891aa173910d3c2b46 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Mon, 14 Oct 2024 22:05:22 +0300 Subject: [PATCH] Documentation fixes --- doc/smart_ptr/shared_array.adoc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/smart_ptr/shared_array.adoc b/doc/smart_ptr/shared_array.adoc index 18bd669..e97de76 100644 --- a/doc/smart_ptr/shared_array.adoc +++ b/doc/smart_ptr/shared_array.adoc @@ -210,7 +210,8 @@ T* get() const noexcept; [none] * {blank} + -Returns:: The stored pointer. +Returns:: + The stored pointer. ### unique @@ -220,8 +221,8 @@ bool unique() const noexcept; [none] * {blank} + -Returns:: `true` if no other `shared_array` is sharing ownership of the -stored pointer, `false` otherwise. +Returns:: + `true` if no other `shared_array` is sharing ownership of the stored pointer, `false` otherwise. ### use_count @@ -253,7 +254,8 @@ void swap(shared_array& b) noexcept; [none] * {blank} + -Effects:: Exchanges the contents of the two smart pointers. +Effects:: + Exchanges the contents of the two smart pointers. ## Free Functions