Skip to content

Commit 1134cf5

Browse files
committed
[css-grid] Typos
1 parent 4cde721 commit 1134cf5

2 files changed

Lines changed: 8 additions & 29 deletions

File tree

css-grid/Overview.bs

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2781,18 +2781,18 @@ Process Flexible Tracks</h3>
27812781
<dl>
27822782
<dt>If the <a>free space</a> is zero:
27832783
<dd>
2784-
The used <i>flex fraction</i>: is zero.
2784+
The used <i>flex fraction</i> is zero.
27852785

27862786
<dt>If the <a>free space</a> is a <a>definite</a> length:
27872787
<dd>
2788-
The used <i>flex fraction</i>: is the result of
2788+
The used <i>flex fraction</i> is the result of
27892789
<a href="#algo-find-fr-size">finding the size of an fr</a>
27902790
using all of the <a>grid tracks</a>
27912791
and a <a>space to fill</a> of the <a>available space</a>.
27922792

27932793
<dt>If the <a>free space</a> is an <a>indefinite</a> length:
27942794
<dd>
2795-
The used <i>flex fraction</i>:is the maximum of:
2795+
The used <i>flex fraction</i> is the maximum of:
27962796

27972797
<ul>
27982798
<li>
@@ -2845,15 +2845,6 @@ Find the Size of an ''fr''</h4>
28452845
This probably needs to be adjusted to handle sum(flex factors) approaches zero,
28462846
same as how Flexbox does it.
28472847

2848-
<h3 id='intrinsic-sizes'>
2849-
Intrinsic Sizing</h3>
2850-
2851-
For a <a>grid container</a>,
2852-
the <a>min-content measure</a> is the sum of the UsedBreadths of the <a>Grid tracks</a> just before step 3 in ComputeUsedBreadthOfGridTracks.
2853-
and the <a>preferred measure</a> is the sum of the UsedBreadths of the <a>Grid tracks</a> after the entire track sizing algorithm has been run with infinite space.
2854-
2855-
<p class='issue'>
2856-
This section'll need updating after the algorithm is rewritten.
28572848

28582849
<h2 id='pagination'>
28592850
Fragmenting Grid Layout</h2>

css-grid/Overview.html

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,7 @@ <h2 class="no-num no-toc no-ref heading settled heading" id=contents><span class
214214
<li><a href=#algo-grow-tracks><span class=secno>10.5</span> Grow All Tracks To Their Max</a>
215215
<li><a href=#algo-flex-tracks><span class=secno>10.6</span> Process Flexible Tracks</a>
216216
<ul class=toc>
217-
<li><a href=#algo-find-fr-size><span class=secno>10.6.1</span> Find the Size of an <span class=css data-link-type=maybe title=fr>fr</span></a></ul>
218-
<li><a href=#intrinsic-sizes><span class=secno>10.7</span> Intrinsic Sizing</a></ul>
217+
<li><a href=#algo-find-fr-size><span class=secno>10.6.1</span> Find the Size of an <span class=css data-link-type=maybe title=fr>fr</span></a></ul></ul>
219218
<li><a href=#pagination><span class=secno>11</span> Fragmenting Grid Layout</a>
220219
<li><a href=#acks><span class=secno></span> Acknowledgements</a>
221220
<li><a href=#changes><span class=secno></span> Changes</a>
@@ -2756,18 +2755,18 @@ <h3 class="heading settled heading" data-level=10.6 id=algo-flex-tracks><span cl
27562755
<dl>
27572756
<dt>If the <a data-link-type=dfn href=#free-space title="free space">free space</a> is zero:
27582757
<dd>
2759-
The used <a data-link-type=dfn href=#flex-fraction title="flex fraction">flex fraction</a>: is zero.
2758+
The used <a data-link-type=dfn href=#flex-fraction title="flex fraction">flex fraction</a> is zero.
27602759

27612760
<dt>If the <a data-link-type=dfn href=#free-space title="free space">free space</a> is a <a data-link-type=dfn href=http://dev.w3.org/csswg/css-sizing-3/#definite title=definite>definite</a> length:
27622761
<dd>
2763-
The used <a data-link-type=dfn href=#flex-fraction title="flex fraction">flex fraction</a>: is the result of
2762+
The used <a data-link-type=dfn href=#flex-fraction title="flex fraction">flex fraction</a> is the result of
27642763
<a href=#algo-find-fr-size>finding the size of an fr</a>
27652764
using all of the <a data-link-type=dfn href=#grid-track title="grid tracks">grid tracks</a>
27662765
and a <a data-link-type=dfn href=#space-to-fill title="space to fill">space to fill</a> of the <a data-link-type=dfn href=#available-space title="available space">available space</a>.
27672766

27682767
<dt>If the <a data-link-type=dfn href=#free-space title="free space">free space</a> is an <a data-link-type=dfn href=http://dev.w3.org/csswg/css-sizing-3/#indefinite title=indefinite>indefinite</a> length:
27692768
<dd>
2770-
The used <a data-link-type=dfn href=#flex-fraction title="flex fraction">flex fraction</a>:is the maximum of:
2769+
The used <a data-link-type=dfn href=#flex-fraction title="flex fraction">flex fraction</a> is the maximum of:
27712770

27722771
<p> <ul>
27732772
<li>
@@ -2820,15 +2819,6 @@ <h4 class="heading settled heading" data-level=10.6.1 id=algo-find-fr-size><span
28202819
This probably needs to be adjusted to handle sum(flex factors) approaches zero,
28212820
same as how Flexbox does it.
28222821

2823-
<h3 class="heading settled heading" data-level=10.7 id=intrinsic-sizes><span class=secno>10.7 </span><span class=content>
2824-
Intrinsic Sizing</span><a class=self-link href=#intrinsic-sizes></a></h3>
2825-
2826-
<p> For a <a data-link-type=dfn href=#grid-container title="grid container">grid container</a>,
2827-
the <a data-link-type=dfn href=http://dev.w3.org/csswg/css-sizing-3/#min-content-measure title="min-content measure">min-content measure</a> is the sum of the UsedBreadths of the <a data-link-type=dfn href=#grid-track title="grid tracks">Grid tracks</a> just before step 3 in ComputeUsedBreadthOfGridTracks.
2828-
and the <a data-link-type=dfn href=http://dev.w3.org/csswg/css-sizing-3/#preferred-measure title="preferred measure">preferred measure</a> is the sum of the UsedBreadths of the <a data-link-type=dfn href=#grid-track title="grid tracks">Grid tracks</a> after the entire track sizing algorithm has been run with infinite space.
2829-
2830-
<p class=issue id=issue-facbb775><a class=self-link href=#issue-facbb775></a>
2831-
This section’ll need updating after the algorithm is rewritten.
28322822

28332823
<h2 class="heading settled heading" data-level=11 id=pagination><span class=secno>11 </span><span class=content>
28342824
Fragmenting Grid Layout</span><a class=self-link href=#pagination></a></h2>
@@ -3346,10 +3336,8 @@ <h2 class="no-num heading settled" id=issues-index><span class=content>Issues In
33463336
This probably needs to be adjusted to handle sum(flex factors) approaches zero,
33473337
same as how Flexbox does it.
33483338

3349-
<a href=#issue-55d6dc75></a></div><div class=issue>
3350-
This section’ll need updating after the algorithm is rewritten.
33513339

3352-
<a href=#issue-facbb775></a></div><div class=issue>
3340+
<a href=#issue-55d6dc75></a></div><div class=issue>
33533341
Fill this in.
33543342

33553343
<a href=#issue-64ae91a4></a></div></div>

0 commit comments

Comments
 (0)