Skip to content

Commit f8253f6

Browse files
authored
Disambiguate header and body constructors (#4436)
1 parent 87b41a3 commit f8253f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

working/2364 - primary constructors/feature-specification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,10 +204,10 @@ class Point {
204204
const Point._(this.x, this.y);
205205
}
206206
207-
// Using a primary constructor.
207+
// Using a primary header constructor.
208208
class const Point._(final int x, final int y);
209209
210-
// Using a primary constructor.
210+
// Using a primary body constructor.
211211
class Point {
212212
const this._(final int x, final int y);
213213
}

0 commit comments

Comments
 (0)