We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4812c8 commit a5444b3Copy full SHA for a5444b3
library/std/src/sys/thread_local/mod.rs
@@ -30,9 +30,9 @@ cfg_if::cfg_if! {
30
target_os = "zkvm",
31
target_os = "trusty",
32
))] {
33
- mod statik;
34
- pub use statik::{EagerStorage, LazyStorage, thread_local_inner};
35
- pub(crate) use statik::{LocalPointer, local_pointer};
+ mod statics;
+ pub use statics::{EagerStorage, LazyStorage, thread_local_inner};
+ pub(crate) use statics::{LocalPointer, local_pointer};
36
} else if #[cfg(target_thread_local)] {
37
mod native;
38
pub use native::{EagerStorage, LazyStorage, thread_local_inner};
library/std/src/sys/thread_local/statik.rs renamed to library/std/src/sys/thread_local/statics.rs
0 commit comments