Skip to content

Commit

Permalink
Fixed tiny typo (#411)
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm authored Aug 7, 2024
1 parent feb8406 commit 0cf2708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/src/examples/json_borrowed.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The previous parser owned its data by allocating strings. This can require quite
some memory space, and using borrowed string slices can help use saving space, while
also maybe increasing performances.

If you are familiar with Rust's concept of litefime,
If you are familiar with Rust's concept of lifetimes,
using `&str` string slices instead of owned `String`
is straightforward:

Expand Down

0 comments on commit 0cf2708

Please sign in to comment.