From c668701868cf565f2fcd37e3858b0e8d6f72f595 Mon Sep 17 00:00:00 2001 From: Greg Lueck Date: Thu, 7 Nov 2024 16:35:51 -0500 Subject: [PATCH] Merge pull request #660 from gmlueck/gmlueck/cherry-pick-642 Fix a typo in `multi_ptr::operator=` documentation (cherry picked from commit e9f6070bc1328dd8d23b9f333129eefeb4f8d395) --- adoc/chapters/programming_interface.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adoc/chapters/programming_interface.adoc b/adoc/chapters/programming_interface.adoc index c3d84581..5f2b2f9c 100644 --- a/adoc/chapters/programming_interface.adoc +++ b/adoc/chapters/programming_interface.adoc @@ -10135,7 +10135,7 @@ operator=(const multi_ptr&) ---- a@ Available only when: [code]#(Space == access::address_space::generic_space && AS != access::address_space::constant_space)#. -Assigns the value of the left hand side [code]#multi_ptr# into the [code]#generic_ptr#. +Assigns the value of the right hand side [code]#multi_ptr# into the [code]#generic_ptr#. a@ [source] @@ -10148,7 +10148,7 @@ operator=(multi_ptr&&) a@ Available only when: [code]#(Space == access::address_space::generic_space && AS != access::address_space::constant_space)#. -Move the value of the left hand side [code]#multi_ptr# into the [code]#generic_ptr#. +Move the value of the right hand side [code]#multi_ptr# into the [code]#generic_ptr#. a@ [source]