From a4bd084e50f75c436a20be2351dceb7a6bf5521a Mon Sep 17 00:00:00 2001
From: Fosco1 <enfoschini@gmail.com>
Date: Mon, 2 Jan 2023 10:04:04 +0100
Subject: [PATCH] Corrected typo on receiver.md

https://dictionary.cambridge.org/it/grammatica/grammatica-britannico/it-s-or-its
---
 src/methods/receiver.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/methods/receiver.md b/src/methods/receiver.md
index 78e88c35..4c3f7e51 100644
--- a/src/methods/receiver.md
+++ b/src/methods/receiver.md
@@ -9,7 +9,7 @@ are other possible receivers for a method:
   reference. The object can be used again afterwards.
 * `self`: takes ownership of the object and moves it away from the caller. The
   method becomes the owner of the object. The object will be dropped (deallocated)
-  when the method returns, unless it’s ownership is explicitly
+  when the method returns, unless its ownership is explicitly
   transmitted.
 * No receiver: this becomes a static method on the struct. Typically used to
   create constructors which are called `new` by convention.