From 965f6d5ca405628fd09f8139ee7d917029764177 Mon Sep 17 00:00:00 2001 From: Abhi Kumar <58290134+abhistark007@users.noreply.github.com> Date: Fri, 3 Jul 2026 11:13:59 +0530 Subject: [PATCH] Update about.md changing binding is not possible but there it showed possible so made changes accordingly --- concepts/references/about.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/concepts/references/about.md b/concepts/references/about.md index 86bafd3d..35f3f602 100644 --- a/concepts/references/about.md +++ b/concepts/references/about.md @@ -41,8 +41,7 @@ int& savings{main_acc}; // try to reseat savings to use main account savings = side_acc; -// savings and main_acc are now -20 -// as this uses the **value** of side_acc +// => compiler error, references binding once set can not be changed savings += 20; // savings and main_acc are now 0, side_acc is stil -20