Skip to content

Commit 0cef85e

Browse files
committed
New release, some doc changes
1 parent a15ddc1 commit 0cef85e

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lazy_static"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
authors = ["Marvin Löbel <[email protected]>"]
55
license = "MIT"
66

src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,7 @@ fn main() {
6464
6565
# Implementation details
6666
67-
The `Deref` implementation uses a hidden `static mut` that is guarded by a atomic check
68-
using the `sync::Once` abstraction. All lazily evaluated values are currently
69-
put in a heap allocated box, due to the Rust language currently not providing any way to
70-
define uninitialized `static mut` values.
67+
The `Deref` implementation uses a hidden static variable that is guarded by a atomic check on each access. On stable Rust, the macro may need to allocate each static on the heap.
7168
7269
*/
7370

0 commit comments

Comments
 (0)