Skip to content

Commit 78ffa02

Browse files
committed
Fix missing dot for anchors due to DDOC_ANCHOR
1 parent aff97fa commit 78ffa02

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/expression.dd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The syntax, order of evaluation, and semantics of expressions are as follows.)
1414

1515
$(H2 $(LNAME2 definitions-and-terms, Definitions and Terms))
1616

17-
$(H3 $(LNAME2 define-full-expression, Full Expression))
17+
$(H3 $(LNAME2 .define-full-expression, Full Expression))
1818

1919
$(P For any expression
2020
$(I expr), the full expression of $(I expr) is defined as follows. If $(I expr) parses as a
@@ -39,7 +39,7 @@ return (() => x + f())() * g();
3939
$(P The full expression of `f()` above is `x + f()`, not the expression passed
4040
to `return`. This is because the parent of `x + f()` has function literal type, not expression type.)
4141

42-
$(H3 $(LNAME2 define-lvalue, Lvalue))
42+
$(H3 $(LNAME2 .define-lvalue, Lvalue))
4343

4444
$(P The following expressions, and no others, are called *lvalue expressions* or *lvalues*:)
4545
$(OL
@@ -67,14 +67,14 @@ $(LI `cast(U)` expressions applied to lvalues of type `T` when `T*` is implicitl
6767
$(LI `cast()` and `cast(`$(I qualifier list)`)` when applied to an lvalue.)
6868
)))
6969

70-
$(H3 $(LNAME2 define-rvalue, Rvalue))
70+
$(H3 $(LNAME2 .define-rvalue, Rvalue))
7171

7272
$(P Expressions that are not lvalues are *rvalues*. Rvalues include all literals, special value keywords such as `__FILE__` and `__LINE__`,
7373
`enum` values, and the result of expressions not defined as lvalues above.)
7474

7575
$(P The built-in address-of operator (unary `&`) may only be applied to lvalues.)
7676

77-
$(H3 $(LNAME2 define-smallest-short-circuit, Smallest Short-Circuit Expression))
77+
$(H3 $(LNAME2 .define-smallest-short-circuit, Smallest Short-Circuit Expression))
7878

7979
$(P Given an expression $(I expr) that is a subexpression of a full
8080
expression $(I fullexpr), the *smallest short-circuit expression*, if any, is the shortest

0 commit comments

Comments
 (0)