From 91dcbe7fed88592507dcf9f41e2102ee0990b8d8 Mon Sep 17 00:00:00 2001 From: amzn-phist <52085794+amzn-phist@users.noreply.github.com> Date: Thu, 22 Jul 2021 21:17:41 -0500 Subject: [PATCH] Fixes minor mistake in helper function desc Signed-off-by: amzn-phist <52085794+amzn-phist@users.noreply.github.com> --- Gems/AudioSystem/Code/Source/Editor/AudioControl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gems/AudioSystem/Code/Source/Editor/AudioControl.h b/Gems/AudioSystem/Code/Source/Editor/AudioControl.h index 9335429fd4..494b0465bd 100644 --- a/Gems/AudioSystem/Code/Source/Editor/AudioControl.h +++ b/Gems/AudioSystem/Code/Source/Editor/AudioControl.h @@ -34,11 +34,11 @@ namespace AudioControls // indicates if the connection is valid for the currently loaded middleware bool m_isValid{ false }; - // Rapid XML provides a 'copy_node' utility that will copy an entire node tree, + // Rapid XML provides a 'clone_node' utility that will copy an entire node tree, // but it only copies pointers of any strings in the node names and values. // This causes problems with storing raw xml nodes as this class does because strings // will be pointing into the memory pool of an xml document that has gone out of scope. - // This function is a rewritten version of 'copy_node' that does the deep copy of strings + // This function is a rewritten version of 'clone_node' that does the deep copy of strings // into the new destination tree. static AZ::rapidxml::xml_node* DeepCopyNode(AZ::rapidxml::xml_node* srcNode) {