From 3c11029acef45da169dd6713c48e9fdd98d606b5 Mon Sep 17 00:00:00 2001 From: Colten <70793703+ColtenOuO@users.noreply.github.com> Date: Wed, 9 Jul 2025 01:59:03 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20clarify=20=E2=80=9Cdag=E2=80=9D=20in=20?= =?UTF-8?q?std::sys=5Fcommon=20doc=20comment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/std/src/sys_common/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/sys_common/mod.rs b/library/std/src/sys_common/mod.rs index b7f4656fa3701..cce88d936b71b 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)]