Skip to content

Commit 19f6961

Browse files
committed
Fix typo
1 parent 77ff080 commit 19f6961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/0000-standard-lazy-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ pub static FOO: Lazy<RefCell<u32>> = Lazy::new(|| RefCell::new(1));
191191

192192
However, `#[thread_local]` attribute is pretty far from stabilization at the moment, and due to the required special handling of destructors, it's unclear if just using `cell::Lazy` will work out.
193193

194-
Unlike `lazy_static!`, `Lazy` can be used used for locals:
194+
Unlike `lazy_static!`, `Lazy` can be used for locals:
195195

196196
```rust
197197
use std::cell::Lazy;

0 commit comments

Comments
 (0)