Skip to content

Commit c1014af

Browse files
authored
Merge pull request #60 from shelbyd/patch-1
Remove double negative and repeated word
2 parents 4faac49 + ac70954 commit c1014af

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)