Skip to content

Commit 10e3e51

Browse files
authored
"it's" is not possessive, dang it
1 parent f0b6815 commit 10e3e51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

posts/2022-06-10-nll-by-default.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Jack's blog post includes a [detailed narrative](https://jackh726.github.io/rust
3030

3131
## Looking forward: what can we expect for the "borrow checker of the future"?
3232

33-
The next frontier for Rust borrow checking is taking the [polonius](https://github.com/rust-lang/polonius) project and moving it from research experiment to production code. Polonius is a next-generation version of the borrow checker that was "spun off" from the main NLL effort in 2018, as we were getting NLL ready to ship in production. It's most important contribution is fixing a known limitation of the borrow checker, demonstrated by the following example:
33+
The next frontier for Rust borrow checking is taking the [polonius](https://github.com/rust-lang/polonius) project and moving it from research experiment to production code. Polonius is a next-generation version of the borrow checker that was "spun off" from the main NLL effort in 2018, as we were getting NLL ready to ship in production. Its most important contribution is fixing a known limitation of the borrow checker, demonstrated by the following example:
3434

3535
```rust=
3636
fn last_or_push<'a>(vec: &'a mut Vec<String>) -> &'a String {

0 commit comments

Comments
 (0)