Skip to content

Commit ac70954

Browse files
authored
Remove double negative and repeated word
I had to reread the original sentence multiple times to understand its meaning. I think this is clearer.
1 parent 66e72b9 commit ac70954

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/2018/transitioning/ownership-and-lifetimes/struct-inference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# `T: 'a` inference in structs
22

33
An annotation in the form of `T: 'a`, where `T` is either a type or another
4-
lifetime, is called an *"outlives"* requirement. Note that *"outlives"* does
5-
not imply that `'a: 'a` does not hold, it does hold.
4+
lifetime, is called an *"outlives"* requirement. Note that *"outlives"* also
5+
implies `'a: 'a`.
66

77
One way in which edition 2018 helps you out in maintaining flow when writing
88
programs is by removing the need to explicitly annotate these `T: 'a` outlives

0 commit comments

Comments
 (0)