std: rename module for clarity · model-checking/verify-rust-std@0b3227b (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 0b3227b
std: rename module for clarity
File tree
2 files changed
lines changed
2 files changed
lines changed
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -59,9 +59,9 @@ pub(crate) mod destructors { | ||
59 | 59 | target_os = "netbsd", |
60 | 60 | target_os = "dragonfly" |
61 | 61 | ))] { |
62 | -mod linux; | |
62 | +mod linux_like; | |
63 | 63 | mod list; |
64 | -pub(super) use linux::register; | |
64 | +pub(super) use linux_like::register; | |
65 | 65 | pub(super) use list::run; |
66 | 66 | } else { |
67 | 67 | mod list; |