Skip to content

Commit

Permalink
Fix some invalid links (#16424)
Browse files Browse the repository at this point in the history
Co-authored-by: dokutoku <3729541-dokutoku@users.noreply.gitlab.com>
  • Loading branch information
dokutoku and dokutoku committed Apr 30, 2024
1 parent f162117 commit 748fab1
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion compiler/src/dmd/argtypes_aarch64.d
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import dmd.mtype;
* This breaks a type down into 'simpler' types that can be passed to a function
* in registers, and returned in registers.
* This is the implementation for the AAPCS64 ABI, based on
* https://github.com/ARM-software/abi-aa/blob/master/aapcs64/aapcs64.rst.
* $(LINK https://github.com/ARM-software/abi-aa/blob/master/aapcs64/aapcs64.rst).
* Params:
* t = type to break down
* Returns:
Expand Down
2 changes: 1 addition & 1 deletion compiler/src/dmd/mtype.d
Original file line number Diff line number Diff line change
Expand Up @@ -3492,7 +3492,7 @@ extern (C++) final class TypeDelegate : TypeNext
* This is a shell containing a TraitsExp that can be
* either resolved to a type or to a symbol.
*
* The point is to allow AliasDeclarationY to use `__traits()`, see https://issues.dlang.org/show_bug.cgi?id=7804.
* The point is to allow AliasDeclarationY to use `__traits()`, see $(LINK https://issues.dlang.org/show_bug.cgi?id=7804).
*/
extern (C++) final class TypeTraits : Type
{
Expand Down
8 changes: 4 additions & 4 deletions druntime/src/core/memory.d
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ extern(D):
This can be used to manually allocate arrays. Initial slice size is 0.
Note: The slice's usable size will not match the block size. Use
$(LREF capacity) to retrieve actual usable capacity.
$(REF1 capacity, object) to retrieve actual usable capacity.
Example:
----
Expand Down Expand Up @@ -611,7 +611,7 @@ extern(C):
* Note:
* Extend may also be used to extend slices (or memory blocks with
* $(LREF APPENDABLE) info). However, use the return value only
* as an indicator of success. $(LREF capacity) should be used to
* as an indicator of success. $(REF1 capacity, object) should be used to
* retrieve actual usable slice capacity.
*/
version (D_ProfileGC)
Expand Down Expand Up @@ -1197,13 +1197,13 @@ $(UL
)
Note: Users should prefer $(REF1 destroy, object) to explicitly finalize objects,
and only resort to $(REF __delete, core,memory) when $(REF destroy, object)
and only resort to $(LREF __delete) when $(REF1 destroy, object)
wouldn't be a feasible option.
Params:
x = aggregate object that should be destroyed
See_Also: $(REF1 destroy, object), $(REF free, core,GC)
See_Also: $(REF1 destroy, object), $(LREF GC.free)
History:
Expand Down
2 changes: 1 addition & 1 deletion druntime/src/core/sys/solaris/sys/priocntl.d
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* D header file for the Solaris priocntl(2) and priocntlset(2) functions.
*
* Copyright: Copyright 2014 Jason King.
* License: $(HTTP www.boost.org/LICENSE_1.0.txt, Boost License 1.0).
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Jason King
*/

Expand Down
2 changes: 1 addition & 1 deletion druntime/src/core/sys/solaris/sys/procset.d
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* D header file defining a process set.
*
* Copyright: Copyright 2014 Jason King.
* License: $(HTTP www.boost.org/LICENSE_1.0.txt, Boost License 1.0).
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Jason King
*/

Expand Down
2 changes: 1 addition & 1 deletion druntime/src/core/sys/solaris/sys/types.d
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* D header file that defines Solaris-specific types.
*
* Copyright: Copyright 2014 Jason King.
* License: $(HTTP www.boost.org/LICENSE_1.0.txt, Boost License 1.0).
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
* Authors: Jason King
*/

Expand Down

0 comments on commit 748fab1

Please sign in to comment.