From 4074b72df84bddc39939317214dfc5345c4957b0 Mon Sep 17 00:00:00 2001
From: Roman <40754203+BohdanQQ@users.noreply.github.com>
Date: Sat, 10 Jun 2023 15:31:46 +0200
Subject: [PATCH] Fix typo in borrowing.md (#790)

---
 src/ownership/borrowing.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ownership/borrowing.md b/src/ownership/borrowing.md
index a5ed290d..7c5bc20f 100644
--- a/src/ownership/borrowing.md
+++ b/src/ownership/borrowing.md
@@ -46,7 +46,7 @@ Notes on stack returns:
   }
   ```
 * The Rust compiler can do return value optimization (RVO).
-* In C++, copy elision has to be defined in the language specification because constructors can have side effects. In Rust, this is not an issue at all. If RVO did not happen, Rust will always performs a simple and efficient `memcpy` copy.
+* In C++, copy elision has to be defined in the language specification because constructors can have side effects. In Rust, this is not an issue at all. If RVO did not happen, Rust will always perform a simple and efficient `memcpy` copy.
 
 </details>