Skip to content

Commit a5444b3

Browse files
committed
Rename internal module from statik to statics
Since `static` is a keyword, it needs to be spelled as `statik` or `static_`, but here we can avoid both.
1 parent d4812c8 commit a5444b3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/std/src/sys/thread_local/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ cfg_if::cfg_if! {
3030
target_os = "zkvm",
3131
target_os = "trusty",
3232
))] {
33-
mod statik;
34-
pub use statik::{EagerStorage, LazyStorage, thread_local_inner};
35-
pub(crate) use statik::{LocalPointer, local_pointer};
33+
mod statics;
34+
pub use statics::{EagerStorage, LazyStorage, thread_local_inner};
35+
pub(crate) use statics::{LocalPointer, local_pointer};
3636
} else if #[cfg(target_thread_local)] {
3737
mod native;
3838
pub use native::{EagerStorage, LazyStorage, thread_local_inner};

0 commit comments

Comments
 (0)