1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-22 06:51:58 +02:00

Grammar fix in ownership/lifetimes-function-calls.md

This commit is contained in:
Reilly Grant 2022-12-22 22:09:17 -08:00 committed by GitHub
parent 264047445f
commit 9464def62e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)]