From 4820b6f42fb8fb2bed0e5c25d41c36e1a0ed3fe2 Mon Sep 17 00:00:00 2001 From: Christian Trott Date: Mon, 2 Dec 2024 09:12:54 -0700 Subject: [PATCH] Update docs/source/API/core/view/view_alloc.rst Co-authored-by: Maarten Arnst --- docs/source/API/core/view/view_alloc.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/API/core/view/view_alloc.rst b/docs/source/API/core/view/view_alloc.rst index eca721a2c..c99fabe87 100644 --- a/docs/source/API/core/view/view_alloc.rst +++ b/docs/source/API/core/view/view_alloc.rst @@ -56,8 +56,8 @@ Description .. cppkokkos:type:: WithoutInitializing :cppkokkos:type:`WithoutInitializing` is intended to be used in situations where default construction of `View` elements in its - associated execution space is not viable. This includes situations such as the construction of objects with virtual functions, - or `Views` of elements which do not have a default constructor. Typically, this option is used in conjunction with manual in-place `new` + associated execution space is not needed or not viable. In particular, it may not be viable in situations such as the construction of objects with virtual functions, + or for `Views` of elements without default constructor. In such situations, this option is often used in conjunction with manual in-place `new` construction of objects and manual destruction of elements. .. cppkokkos:type:: SequentialHostInit