File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ is that some Drop implementations will not access borrowed data even
125
125
though their type gives them the capability for such access.
126
126
127
127
For example, this variant of the above ` Inspector ` example will never
128
- accessed borrowed data:
128
+ access borrowed data:
129
129
130
130
``` rust,ignore
131
131
struct Inspector<'a>(&'a u8, &'static str);
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ lifetime can be regarded as `'static`.
11
11
12
12
Almost no reference is ` 'static ` , so this is probably wrong. ` transmute ` and
13
13
` transmute_copy ` are the two other primary offenders. One should endeavor to
14
- bound an unbounded lifetime as quick as possible, especially across function
14
+ bound an unbounded lifetime as quickly as possible, especially across function
15
15
boundaries.
16
16
17
17
Given a function, any output lifetimes that don't derive from inputs are
You can’t perform that action at this time.
0 commit comments