Skip to content

Commit 696ae48

Browse files
ntreldlang-bot
authored andcommitted
[spec] Update links to lvalue sequences
1 parent e8ef1b8 commit 696ae48

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

spec/arrays.dd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ Returns an array literal with each element of the literal being the $(D .init) p
620620
$(TROW $(D .ptr), Returns a pointer to the first element of the array.)
621621
$(TROW $(D .dup), Create a dynamic array of the same size and copy the contents of the array into it. The copy will have any immutability or const stripped. If this conversion is invalid the call will not compile.)
622622
$(TROW $(D .idup), Create a dynamic array of the same size and copy the contents of the array into it. The copy is typed as being immutable. If this conversion is invalid the call will not compile.)
623-
$(TROW $(D .tupleof), $(ARGS Returns an $(DDSUBLINK spec/template, homogeneous_sequences, lvalue sequence) of each element in the array:
623+
$(TROW $(D .tupleof), $(ARGS Returns an $(DDSUBLINK spec/template, lvalue-sequences, lvalue sequence) of each element in the array:
624624
$(SPEC_RUNNABLE_EXAMPLE_RUN
625625
---
626626
void foo(int, int, int) { /* ... */ }

spec/class.dd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ $(TROW $(D .tupleof), See below.)
178178
$(H3 $(LNAME2 tupleof, `.tupleof`))
179179

180180
$(P The $(D .tupleof) property is an
181-
$(DDSUBLINK spec/template, homogeneous_sequences, lvalue sequence)
181+
$(DDSUBLINK spec/template, lvalue-sequences, lvalue sequence)
182182
of all the non-static fields in the class, excluding the hidden fields and
183183
the fields in the base class.)
184184
$(P The order of the fields in the tuple matches the order in which the fields are declared.)

spec/statement.dd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1111,7 +1111,7 @@ $(H3 $(LNAME2 foreach_ref_parameters, Foreach Ref Parameters))
11111111

11121112
$(P $(D ref) can be used to modify the elements of the *ForeachAggregate*.
11131113
This works for containers that expose lvalue elements, and
1114-
$(DDSUBLINK spec/template, homogeneous_sequences, lvalue sequences).
1114+
$(DDSUBLINK spec/template, lvalue-sequences, lvalue sequences).
11151115
)
11161116

11171117
$(SPEC_RUNNABLE_EXAMPLE_RUN

spec/struct.dd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ $(H3 $(LNAME2 struct_instance_properties, Struct Instance Properties))
610610

611611
$(TABLE2 Struct Instance Properties,
612612
$(THEAD Name, Description)
613-
$(TROW $(D .tupleof), An $(DDSUBLINK spec/template, homogeneous_sequences, lvalue sequence)
613+
$(TROW $(D .tupleof), An $(DDSUBLINK spec/template, lvalue-sequences, lvalue sequence)
614614
of all struct fields - see
615615
$(DDSUBLINK spec/class, tupleof, here) for a class-based example.)
616616
)

0 commit comments

Comments
 (0)