From 856daf1485e816dff21eb6a268a67fbcf41ff5d6 Mon Sep 17 00:00:00 2001 From: sconel Date: Thu, 10 Jun 2021 10:46:36 -0700 Subject: [PATCH] Addressed PR feedback --- .../AzToolsFramework/Prefab/Instance/Instance.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.h b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.h index bba20cbe8a..5f36ac10dc 100644 --- a/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.h +++ b/Code/Framework/AzToolsFramework/AzToolsFramework/Prefab/Instance/Instance.h @@ -89,8 +89,9 @@ namespace AzToolsFramework void DetachEntities(const AZStd::function)>& callback); /** - * Detaches all entities in the instance hierarchy, including; all direct and nested entities, all container entities. - * Note that without container entities the hierarchy that remains cannot be used further without restoring new ones + * Detaches all entities in the instance hierarchy. + * Includes all direct entities, all nested entities, and all container entities. + * Note that without container entities the hierarchy that remains cannot be used further without restoring new ones. * @param callback A user provided callback that can be used to capture ownership and manipulate the detached entities. */ void DetachAllEntitiesInHierarchy(const AZStd::function)>& callback);