Skip to content

Commit 7716f79

Browse files
authored
editorial
1 parent 67886dc commit 7716f79

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spec/class.dd

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -386,12 +386,12 @@ $(GNAME Constructor):
386386
this() { }
387387
------
388388

389-
$(P Some restrictions apply to class construction:)
389+
$(P The following restrictions apply to class construction:)
390390

391391
$(OL
392-
$(LI If any delegate constructor call appears inside a constructor, every
393-
path through the constructor must make exactly one delegate constructor
394-
call:
392+
$(LI If a constructor's code contains a delegate constructor call, all
393+
possible execution paths through the constructor must make exactly one
394+
delegate constructor call:
395395

396396
------
397397
this() { a || super(); } // illegal
@@ -445,7 +445,7 @@ $(GNAME Constructor):
445445
)
446446

447447
$(LI If a delegating constructor is not called, a call to the base
448-
class's default constructor is called.)
448+
class's default constructor is issued.)
449449

450450
$(LI The body of the constructor is executed.)
451451

@@ -492,7 +492,7 @@ $(GNAME Constructor):
492492
immutable i = new immutable C();
493493
------
494494

495-
$(P If the constructor can create unique object (e.g. if it is `pure`),
495+
$(P If the constructor can create a unique object (e.g. if it is `pure`),
496496
the object can be implicitly convertible to any qualifiers.
497497
)
498498
------

0 commit comments

Comments
 (0)