From 9c350031c738d5e6aa34a4c6a8222a9d992690e9 Mon Sep 17 00:00:00 2001 From: Jonas Meeuws Date: Tue, 7 Jan 2025 10:54:00 +0100 Subject: [PATCH] Fix invalid "Source: " links in druntime module ddocs --- druntime/src/__importc_builtins.di | 2 +- druntime/src/core/internal/backtrace/dwarf.d | 2 +- druntime/src/core/internal/backtrace/elf.d | 2 +- druntime/src/core/internal/backtrace/macho.d | 2 +- druntime/src/core/internal/elf/io.d | 2 +- druntime/src/core/internal/postblit.d | 2 +- druntime/src/core/internal/string.d | 2 +- druntime/src/core/sys/darwin/mach/stab.d | 2 +- druntime/src/core/sys/posix/stdc/time.d | 2 +- druntime/src/core/sys/windows/dbghelp.d | 2 +- druntime/src/core/sys/windows/stdc/time.d | 2 +- druntime/src/core/thread/threadbase.d | 2 +- druntime/src/core/thread/threadgroup.d | 2 +- druntime/src/core/thread/types.d | 2 +- druntime/src/etc/linux/memoryerror.d | 2 +- druntime/src/rt/sections_elf_shared.d | 2 +- 16 files changed, 16 insertions(+), 16 deletions(-) diff --git a/druntime/src/__importc_builtins.di b/druntime/src/__importc_builtins.di index 94247179cd73..a13aa407bc12 100644 --- a/druntime/src/__importc_builtins.di +++ b/druntime/src/__importc_builtins.di @@ -6,7 +6,7 @@ * Copyright: Copyright D Language Foundation 2022-2024 * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Walter Bright - * Source: $(DRUNTIMESRC __importc_builtins.d) + * Source: $(DRUNTIMESRC __importc_builtins.di) */ diff --git a/druntime/src/core/internal/backtrace/dwarf.d b/druntime/src/core/internal/backtrace/dwarf.d index a4f1bf681296..a57dc62008fe 100644 --- a/druntime/src/core/internal/backtrace/dwarf.d +++ b/druntime/src/core/internal/backtrace/dwarf.d @@ -44,7 +44,7 @@ * Copyright: Copyright Digital Mars 2015 - 2015. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Yazan Dabain, Sean Kelly - * Source: $(DRUNTIMESRC rt/backtrace/dwarf.d) + * Source: $(DRUNTIMESRC core/internal/backtrace/dwarf.d) */ module core.internal.backtrace.dwarf; diff --git a/druntime/src/core/internal/backtrace/elf.d b/druntime/src/core/internal/backtrace/elf.d index 07d676947939..a99ab370dcd7 100644 --- a/druntime/src/core/internal/backtrace/elf.d +++ b/druntime/src/core/internal/backtrace/elf.d @@ -6,7 +6,7 @@ * Copyright: Copyright Digital Mars 2015 - 2018. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Yazan Dabain - * Source: $(DRUNTIMESRC rt/backtrace/elf.d) + * Source: $(DRUNTIMESRC core/internal/backtrace/elf.d) */ module core.internal.backtrace.elf; diff --git a/druntime/src/core/internal/backtrace/macho.d b/druntime/src/core/internal/backtrace/macho.d index ed10bc827b55..a95ec075e1a0 100644 --- a/druntime/src/core/internal/backtrace/macho.d +++ b/druntime/src/core/internal/backtrace/macho.d @@ -4,7 +4,7 @@ * Copyright: Copyright Jacob Carlborg 2018. * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0) * Authors: Jacob Carlborg - * Source: $(DRUNTIMESRC rt/backtrace/macho.d) + * Source: $(DRUNTIMESRC core/internal/backtrace/macho.d) */ module core.internal.backtrace.macho; diff --git a/druntime/src/core/internal/elf/io.d b/druntime/src/core/internal/elf/io.d index 1598f5f4bb69..c45cff0468e3 100644 --- a/druntime/src/core/internal/elf/io.d +++ b/druntime/src/core/internal/elf/io.d @@ -6,7 +6,7 @@ * Copyright: Copyright Digital Mars 2015 - 2018. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Yazan Dabain, Martin Kinkelin - * Source: $(DRUNTIMESRC core/elf/io.d) + * Source: $(DRUNTIMESRC core/internal/elf/io.d) */ module core.internal.elf.io; diff --git a/druntime/src/core/internal/postblit.d b/druntime/src/core/internal/postblit.d index ed4ec1b7ff4a..3377ba5c3d94 100644 --- a/druntime/src/core/internal/postblit.d +++ b/druntime/src/core/internal/postblit.d @@ -5,7 +5,7 @@ License: Distributed under the $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). (See accompanying file LICENSE) - Source: $(DRUNTIMESRC core/_internal/_destruction.d) + Source: $(DRUNTIMESRC core/_internal/_postblit.d) */ module core.internal.postblit; diff --git a/druntime/src/core/internal/string.d b/druntime/src/core/internal/string.d index 7bb319ecfa5e..e5abce47db83 100644 --- a/druntime/src/core/internal/string.d +++ b/druntime/src/core/internal/string.d @@ -4,7 +4,7 @@ * Copyright: Copyright Sean Kelly 2005 - 2009. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Sean Kelly, Walter Bright - * Source: $(DRUNTIMESRC rt/util/_string.d) + * Source: $(DRUNTIMESRC core/internal/_string.d) */ module core.internal.string; diff --git a/druntime/src/core/sys/darwin/mach/stab.d b/druntime/src/core/sys/darwin/mach/stab.d index ecdb4560a68b..7125cf28143f 100644 --- a/druntime/src/core/sys/darwin/mach/stab.d +++ b/druntime/src/core/sys/darwin/mach/stab.d @@ -24,7 +24,7 @@ * * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Mathias 'Geod24' Lang - * Source: $(DRUNTIMESRC core/sys/darwin/mach/_nlist.d) + * Source: $(DRUNTIMESRC core/sys/darwin/mach/_stab.d) */ module core.sys.darwin.mach.stab; diff --git a/druntime/src/core/sys/posix/stdc/time.d b/druntime/src/core/sys/posix/stdc/time.d index d48a0ea3edaf..c5a2e1b71827 100644 --- a/druntime/src/core/sys/posix/stdc/time.d +++ b/druntime/src/core/sys/posix/stdc/time.d @@ -9,7 +9,7 @@ * (See accompanying file LICENSE) * Authors: Sean Kelly, * Alex Rønne Petersen - * Source: $(DRUNTIMESRC core/stdc/_time.d) + * Source: $(DRUNTIMESRC core/sys/posix/stdc/_time.d) * Standards: ISO/IEC 9899:1999 (E) */ diff --git a/druntime/src/core/sys/windows/dbghelp.d b/druntime/src/core/sys/windows/dbghelp.d index 55fbc56a754c..fb6fb668672d 100644 --- a/druntime/src/core/sys/windows/dbghelp.d +++ b/druntime/src/core/sys/windows/dbghelp.d @@ -6,7 +6,7 @@ * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Benjamin Thaut, Sean Kelly - * Source: $(DRUNTIMESRC core/sys/windows/_stacktrace.d) + * Source: $(DRUNTIMESRC core/sys/windows/_dbghelp.d) */ module core.sys.windows.dbghelp; diff --git a/druntime/src/core/sys/windows/stdc/time.d b/druntime/src/core/sys/windows/stdc/time.d index 97eb4bf1e11a..407b92c20a6f 100644 --- a/druntime/src/core/sys/windows/stdc/time.d +++ b/druntime/src/core/sys/windows/stdc/time.d @@ -9,7 +9,7 @@ * (See accompanying file LICENSE) * Authors: Sean Kelly, * Alex Rønne Petersen - * Source: $(DRUNTIMESRC core/stdc/_time.d) + * Source: $(DRUNTIMESRC core/sys/windows/stdc/_time.d) * Standards: ISO/IEC 9899:1999 (E) */ diff --git a/druntime/src/core/thread/threadbase.d b/druntime/src/core/thread/threadbase.d index aac14c638bf5..eab0ef30a96b 100644 --- a/druntime/src/core/thread/threadbase.d +++ b/druntime/src/core/thread/threadbase.d @@ -7,7 +7,7 @@ * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Sean Kelly, Walter Bright, Alex Rønne Petersen, Martin Nowak - * Source: $(DRUNTIMESRC core/thread/osthread.d) + * Source: $(DRUNTIMESRC core/thread/threadbase.d) */ module core.thread.threadbase; diff --git a/druntime/src/core/thread/threadgroup.d b/druntime/src/core/thread/threadgroup.d index d00ce05854de..b2ab9313901b 100644 --- a/druntime/src/core/thread/threadgroup.d +++ b/druntime/src/core/thread/threadgroup.d @@ -6,7 +6,7 @@ * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Sean Kelly, Walter Bright, Alex Rønne Petersen, Martin Nowak - * Source: $(DRUNTIMESRC core/thread/osthread.d) + * Source: $(DRUNTIMESRC core/thread/threadgroup.d) */ module core.thread.threadgroup; diff --git a/druntime/src/core/thread/types.d b/druntime/src/core/thread/types.d index 998f610c2556..09bff855b237 100644 --- a/druntime/src/core/thread/types.d +++ b/druntime/src/core/thread/types.d @@ -6,7 +6,7 @@ * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE) * Authors: Sean Kelly, Walter Bright, Alex Rønne Petersen, Martin Nowak - * Source: $(DRUNTIMESRC core/thread/osthread.d) + * Source: $(DRUNTIMESRC core/thread/types.d) */ module core.thread.types; diff --git a/druntime/src/etc/linux/memoryerror.d b/druntime/src/etc/linux/memoryerror.d index e1363e9e10ec..d1fc3aaf2fd1 100644 --- a/druntime/src/etc/linux/memoryerror.d +++ b/druntime/src/etc/linux/memoryerror.d @@ -9,7 +9,7 @@ * $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0). * (See accompanying file LICENSE_1_0.txt) * Authors: Amaury SECHET, FeepingCreature, Vladimir Panteleev - * Source: $(DRUNTIMESRC etc/linux/memory.d) + * Source: $(DRUNTIMESRC etc/linux/memoryerror.d) */ module etc.linux.memoryerror; diff --git a/druntime/src/rt/sections_elf_shared.d b/druntime/src/rt/sections_elf_shared.d index 5dbc0f0758ff..6093f755531d 100644 --- a/druntime/src/rt/sections_elf_shared.d +++ b/druntime/src/rt/sections_elf_shared.d @@ -5,7 +5,7 @@ * Copyright: Copyright Martin Nowak 2012-2013. * License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0). * Authors: Martin Nowak - * Source: $(DRUNTIMESRC rt/_sections_linux.d) + * Source: $(DRUNTIMESRC rt/_sections_elf_shared.d) */ module rt.sections_elf_shared;