about summary refs log tree commit diff
diff options
context:
space:
mode:
authorColten <70793703+ColtenOuO@users.noreply.github.com>2025-07-09 01:59:03 +0800
committerColtenOuO <jun930436@gmail.com>2025-07-11 11:53:47 +0800
commit3c11029acef45da169dd6713c48e9fdd98d606b5 (patch)
tree46a70e20f16398bbe1700fe8e00bc6a567d90b17
parentf838cbc06de60819faff3413f374706b74824ca2 (diff)
downloadrust-3c11029acef45da169dd6713c48e9fdd98d606b5.tar.gz
rust-3c11029acef45da169dd6713c48e9fdd98d606b5.zip
docs: clarify “dag” in std::sys_common doc comment
-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)]