File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -386,12 +386,12 @@ $(GNAME Constructor):
386
386
this() { }
387
387
------
388
388
389
- $(P Some restrictions apply to class construction:)
389
+ $(P The following restrictions apply to class construction:)
390
390
391
391
$(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:
395
395
396
396
------
397
397
this() { a || super(); } // illegal
@@ -445,7 +445,7 @@ $(GNAME Constructor):
445
445
)
446
446
447
447
$(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 .)
449
449
450
450
$(LI The body of the constructor is executed.)
451
451
@@ -492,7 +492,7 @@ $(GNAME Constructor):
492
492
immutable i = new immutable C();
493
493
------
494
494
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`),
496
496
the object can be implicitly convertible to any qualifiers.
497
497
)
498
498
------
You can’t perform that action at this time.
0 commit comments