Skip to content

Commit 4abe6ec

Browse files
committed
[css-grid] s/plicitly-created/plicitly-assigned/g (editorial)
1 parent c1d5d3f commit 4abe6ec

2 files changed

Lines changed: 28 additions & 28 deletions

File tree

css-grid-1/Overview.bs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,8 +1658,8 @@ Naming Grid Lines: the <css>[<<custom-ident>>*]</css> syntax</h4>
16581658
While <a>grid lines</a> can always be referred to by their numerical index,
16591659
<dfn export lt="line name">line names</dfn>
16601660
can make the <a>grid-placement properties</a> easier to understand and maintain.
1661-
[=Line names=] can be <dfn lt="explicitly-created line name">explicitly-created</dfn> with the 'grid-template-rows' and 'grid-template-columns' properties,
1662-
or [=implicitly-created line name|implicitly created=] by <a>named grid areas</a> with the 'grid-template-areas' property.
1661+
[=Line names=] can be <dfn lt="explicitly-assigned line name">explicitly assigned</dfn> with the 'grid-template-rows' and 'grid-template-columns' properties,
1662+
or [=implicitly-assigned line name|implicitly assigned=] by <a>named grid areas</a> with the 'grid-template-areas' property.
16631663

16641664
<div class='example'>
16651665
For example,
@@ -2166,22 +2166,22 @@ Serialization Of Template Strings</h4>
21662166
with all other white space elided.
21672167

21682168
<h4 id="implicit-named-lines">
2169-
Implicitly-Created Line Names</h4>
2169+
Implicitly-Assigned Line Names</h4>
21702170

2171-
The 'grid-template-areas' property generates <dfn export lt="implicitly-created line name">implicitly-created line names</dfn> from the <a>named grid areas</a> in the template.
2172-
For each <a>named grid area</a> <var>foo</var>, four <a>implicitly-created line names</a> are created:
2171+
The 'grid-template-areas' property generates <dfn export lt="implicitly-assigned line name">implicitly-assigned line names</dfn> from the <a>named grid areas</a> in the template.
2172+
For each <a>named grid area</a> <var>foo</var>, four <a>implicitly-assigned line names</a> are created:
21732173
two named <css><var>foo</var>-start</css>, naming the row-start and column-start lines of the <a>named grid area</a>,
21742174
and two named <css><var>foo</var>-end</css>, naming the row-end and column-end lines of the <a>named grid area</a>.
21752175

2176-
These [=implicitly-created line names=] behave just like any other [=line names=],
2176+
These [=implicitly-assigned line names=] behave just like any other [=line names=],
21772177
except that they do not appear in the value of 'grid-template-rows'/'grid-template-columns'.
2178-
Even if an [=explicitly-created line name=] with the same name is defined,
2179-
the [=implicitly-created line names=] are just more lines with the same name.
2178+
Even if an [=explicitly-assigned line name=] with the same name is defined,
2179+
the [=implicitly-assigned line names=] are just more lines with the same name.
21802180

21812181
<h4 id="implicit-named-areas">
21822182
Implicitly-Named Areas</h4>
21832183

2184-
Since a <a>named grid area</a> is referenced by the <a>implicitly-created line names</a> it produces,
2184+
Since a <a>named grid area</a> is referenced by the <a>implicitly-assigned line names</a> it produces,
21852185
explicitly adding named lines of the same form (''foo-start''/''foo-end'')
21862186
effectively creates a <a>named grid area</a>.
21872187
Such <dfn export lt="implicitly-named area">implicitly-named areas</dfn> do not appear in the value of 'grid-template-areas',
@@ -2279,7 +2279,7 @@ Explicit Grid Shorthand: the 'grid-template' property</h3>
22792279
</ul>
22802280
</object>
22812281
<figcaption>The grid created by the declarations above.
2282-
(The “a/b-start/end” names are [=implicitly-created line name|implicitly created=] by the <a>named grid areas</a>.)
2282+
(The “a/b-start/end” names are [=implicitly-assigned line name|implicitly assigned=] by the <a>named grid areas</a>.)
22832283
</figcaption>
22842284
</figure>
22852285
</div>
@@ -2956,7 +2956,7 @@ Line-based Placement: the 'grid-row-start', 'grid-column-start', 'grid-row-end',
29562956
if there is a <a>named line</a> with the name <css><<custom-ident>>-start</css> (for 'grid-*-start') / <css><<custom-ident>>-end</css> (for 'grid-*-end'),
29572957
contributes the first such line to the <a>grid item</a>’s <a>placement</a>.
29582958

2959-
Note: <a>Named grid areas</a> automatically generate [=implicitly-created line names=] of this form,
2959+
Note: <a>Named grid areas</a> automatically generate [=implicitly-assigned line names=] of this form,
29602960
so specifying ''grid-row-start: foo'' will choose the start edge of that <a>named grid area</a>
29612961
(unless another line named ''foo-start'' was explicitly specified before it).
29622962

@@ -5129,7 +5129,7 @@ Clarifications</h4>
51295129
</blockquote>
51305130
<blockquote>
51315131
<p>The 'grid-auto-columns' and 'grid-auto-rows' properties specify
5132-
the size of <del>such implicitly-created tracks</del>
5132+
the size of <del>such implicit tracks</del>
51335133
<ins>tracks not assigned a size
51345134
by 'grid-template-rows' or 'grid-template-columns'.</ins>
51355135
</blockquote>

css-grid-2/Overview.bs

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1736,8 +1736,8 @@ Naming Grid Lines: the <css>[<<custom-ident>>*]</css> syntax</h4>
17361736
While <a>grid lines</a> can always be referred to by their numerical index,
17371737
<dfn export lt="line name">line names</dfn>
17381738
can make the <a>grid-placement properties</a> easier to understand and maintain.
1739-
[=Line names=] can be <dfn lt="explicitly-created line name">explicitly-created</dfn> with the 'grid-template-rows' and 'grid-template-columns' properties,
1740-
or [=implicitly-created line name|implicitly created=] by <a>named grid areas</a> with the 'grid-template-areas' property.
1739+
[=Line names=] can be <dfn lt="explicitly-assigned line name">explicitly assigned</dfn> with the 'grid-template-rows' and 'grid-template-columns' properties,
1740+
or [=implicitly-assigned line name|implicitly assigned=] by <a>named grid areas</a> with the 'grid-template-areas' property.
17411741

17421742
<div class='example'>
17431743
For example,
@@ -2312,22 +2312,22 @@ Serialization Of Template Strings</h4>
23122312
with all other white space elided.
23132313

23142314
<h4 id="implicit-named-lines">
2315-
Implicitly-Created Line Names</h4>
2315+
Implicitly-Assigned Line Names</h4>
23162316

2317-
The 'grid-template-areas' property generates <dfn export lt="implicitly-created line name">implicitly-created line names</dfn> from the <a>named grid areas</a> in the template.
2318-
For each <a>named grid area</a> <var>foo</var>, four <a>implicitly-created line names</a> are created:
2317+
The 'grid-template-areas' property generates <dfn export lt="implicitly-assigned line name">implicitly-assigned line names</dfn> from the <a>named grid areas</a> in the template.
2318+
For each <a>named grid area</a> <var>foo</var>, four <a>implicitly-assigned line names</a> are created:
23192319
two named <css><var>foo</var>-start</css>, naming the row-start and column-start lines of the <a>named grid area</a>,
23202320
and two named <css><var>foo</var>-end</css>, naming the row-end and column-end lines of the <a>named grid area</a>.
23212321

2322-
These [=implicitly-created line names=] behave just like any other [=line names=],
2322+
These [=implicitly-assigned line names=] behave just like any other [=line names=],
23232323
except that they do not appear in the value of 'grid-template-rows'/'grid-template-columns'.
2324-
Even if an [=explicitly-created line name=] with the same name is defined,
2325-
the [=implicitly-created line names=] are just more lines with the same name.
2324+
Even if an [=explicitly-assigned line name=] with the same name is defined,
2325+
the [=implicitly-assigned line names=] are just more lines with the same name.
23262326

23272327
<h4 id="implicit-named-areas">
23282328
Implicitly-Named Areas</h4>
23292329

2330-
Since a <a>named grid area</a> is referenced by the <a>implicitly-created line names</a> it produces,
2330+
Since a <a>named grid area</a> is referenced by the <a>implicitly-assigned line names</a> it produces,
23312331
explicitly adding named lines of the same form (''foo-start''/''foo-end'')
23322332
effectively creates a <a>named grid area</a>.
23332333
Such <dfn export lt="implicitly-named area">implicitly-named areas</dfn> do not appear in the value of 'grid-template-areas',
@@ -2425,7 +2425,7 @@ Explicit Grid Shorthand: the 'grid-template' property</h3>
24252425
</ul>
24262426
</object>
24272427
<figcaption>The grid created by the declarations above.
2428-
(The “a/b-start/end” names are [=implicitly-created line name|implicitly created=] by the <a>named grid areas</a>.)
2428+
(The “a/b-start/end” names are [=implicitly-assigned line name|implicitly assigned=] by the <a>named grid areas</a>.)
24292429
</figcaption>
24302430
</figure>
24312431
</div>
@@ -3108,7 +3108,7 @@ Line-based Placement: the 'grid-row-start', 'grid-column-start', 'grid-row-end',
31083108
if there is a <a>named line</a> with the name <css><<custom-ident>>-start</css> (for 'grid-*-start') / <css><<custom-ident>>-end</css> (for 'grid-*-end'),
31093109
contributes the first such line to the <a>grid item</a>’s <a>placement</a>.
31103110

3111-
Note: <a>Named grid areas</a> automatically generate [=implicitly-created line names=] of this form,
3111+
Note: <a>Named grid areas</a> automatically generate [=implicitly-assigned line names=] of this form,
31123112
so specifying ''grid-row-start: foo'' will choose the start edge of that <a>named grid area</a>
31133113
(unless another line named ''foo-start'' was explicitly specified before it).
31143114

@@ -3554,7 +3554,7 @@ Subgrids</h2>
35543554
<li id="subgrid-line-name-inheritance">
35553555
Since <a>subgrids</a> can be placed before their contents are placed,
35563556
the [=subgridded=] lines
3557-
automatically receive the [=explicitly-created line names=]
3557+
automatically receive the [=explicitly-assigned line names=]
35583558
specified on the corresponding lines of the parent <a>grid</a>.
35593559

35603560
These names are in <em>addition</em> to
@@ -3563,13 +3563,13 @@ Subgrids</h2>
35633563
<li id="subgrid-area-inheritance">
35643564
When a <a>subgrid</a> overlaps a <a>named grid area</a> in its parent
35653565
that was created by a 'grid-template-areas' property declaration,
3566-
[=implicitly-created line names=] are assigned
3566+
[=implicitly-assigned line names=] are assigned
35673567
to represent the parent’s <a>named grid area</a>
35683568
within the <a>subgrid</a>.
35693569

35703570
Note: If a <a>named grid area</a>
35713571
only partially overlaps the <a>subgrid</a>,
3572-
its [=implicitly-created line names=]
3572+
its [=implicitly-assigned line names=]
35733573
will be assigned
35743574
to the first and/or last line of the <a>subgrid</a>
35753575
such that a <a>named grid area</a> exists
@@ -3622,9 +3622,9 @@ Subgrids</h2>
36223622
.inner = [center info-start] [info-end photos-start] [main-end photos-end]
36233623
</pre>
36243624

3625-
Notice that all the [=explicitly-created names=]
3625+
Notice that all the [=explicitly-assigned names=]
36263626
inherit straight through to .inner,
3627-
but the [=implicitly-created names=] are calculated based on
3627+
but the [=implicitly-assigned names=] are calculated based on
36283628
each [=subgrid=]'s overlap of the original <a>named grid area</a>.
36293629
</div>
36303630

0 commit comments

Comments
 (0)