File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 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
125125though their type gives them the capability for such access.
126126
127127For example, this variant of the above ` Inspector ` example will never
128- accessed borrowed data:
128+ access borrowed data:
129129
130130``` rust,ignore
131131struct 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`.
1111
1212Almost no reference is ` 'static ` , so this is probably wrong. ` transmute ` and
1313` 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
1515boundaries.
1616
1717Given a function, any output lifetimes that don't derive from inputs are
You can’t perform that action at this time.
0 commit comments