From 9464def62ed5ede9037dc9a84cb8e04cb2fcf115 Mon Sep 17 00:00:00 2001 From: Reilly Grant Date: Thu, 22 Dec 2022 22:09:17 -0800 Subject: [PATCH] Grammar fix in ownership/lifetimes-function-calls.md --- src/ownership/lifetimes-function-calls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ownership/lifetimes-function-calls.md b/src/ownership/lifetimes-function-calls.md index 71971650..82d5e911 100644 --- a/src/ownership/lifetimes-function-calls.md +++ b/src/ownership/lifetimes-function-calls.md @@ -1,6 +1,6 @@ # Lifetimes in Function Calls -In addition to borrow its arguments, a function can return a borrowed value: +In addition to borrowing its arguments, a function can return a borrowed value: ```rust,editable #[derive(Debug)]