From 958bfe58c5640894ebc8539e703815f53aba5179 Mon Sep 17 00:00:00 2001 From: Jason Lin Date: Wed, 21 Aug 2024 16:34:08 +1000 Subject: [PATCH] Update shared.md (#2292) --- src/references/shared.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/references/shared.md b/src/references/shared.md index befc2c55..a85497ff 100644 --- a/src/references/shared.md +++ b/src/references/shared.md @@ -4,9 +4,9 @@ minutes: 10 # Shared References -A reference provides a way to access another value without taking responsibility -for the value, and is also called "borrowing". Shared references are read-only, -and the referenced data cannot change. +A reference provides a way to access another value without taking ownership of +the value, and is also called "borrowing". Shared references are read-only, and +the referenced data cannot change.