1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-07-16 19:14:20 +02:00

Merge pull request #43 from reillyeon/patch-3

Grammar fix in ownership/lifetimes-function-calls.md
This commit is contained in:
Martin Geisler
2022-12-23 11:34:51 +01:00
committed by GitHub

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