about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-07-11 19:45:23 +0200
committerGitHub <noreply@github.com>2025-07-11 19:45:23 +0200
commit140fc184f263621247338653f1de0580e21cac8c (patch)
tree289f6d0344b8b53069fda19b6513f89e8933d2f9 /library/std/src
parent7f3204f34d20e61a7581d8c9b52d00bf832a74bf (diff)
parent3c11029acef45da169dd6713c48e9fdd98d606b5 (diff)
downloadrust-140fc184f263621247338653f1de0580e21cac8c.tar.gz
rust-140fc184f263621247338653f1de0580e21cac8c.zip
Rollup merge of #143647 - ColtenOuO:master, r=ChrisDenton
Clarify and expand documentation for std::sys_common dependency structure

This PR makes a minor improvement to the module-level documentation of std::sys_common:

Replaces the lowercase “dag” with the more standard and explicit form “DAG (Directed Acyclic Graph)” for clarity.
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/sys_common/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys_common/mod.rs b/library/std/src/sys_common/mod.rs
index b7f4656fa37..cce88d936b7 100644
--- a/library/std/src/sys_common/mod.rs
+++ b/library/std/src/sys_common/mod.rs
@@ -11,7 +11,7 @@
 //! This is because `sys_common` not only contains platform-independent code,
 //! but also code that is shared between the different platforms in `sys`.
 //! Ideally all that shared code should be moved to `sys::common`,
-//! and the dependencies between `std`, `sys_common` and `sys` all would form a dag.
+//! and the dependencies between `std`, `sys_common` and `sys` all would form a DAG.
 //! Progress on this is tracked in #84187.
 
 #![allow(missing_docs)]