Skip to content

Commit a6bba78

Browse files
committed
[css-grid-1] Fix the range that <positive-integer> was supposed to be replaced with.
1 parent 2801557 commit a6bba78

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

css-grid-1/Overview.bs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1685,7 +1685,7 @@ Syntax of ''repeat()''</h5>
16851685
The generic form of the ''repeat()'' syntax is, approximately,
16861686

16871687
<pre class='prod'>
1688-
repeat( [ <<integer [0,&infin;]>> | auto-fill | auto-fit ] , <<track-list>> )
1688+
repeat( [ <<integer [1,Infinity]>> | auto-fill | auto-fit ] , <<track-list>> )
16891689
</pre>
16901690

16911691
The first argument specifies the number of repetitions.
@@ -1703,9 +1703,9 @@ Syntax of ''repeat()''</h5>
17031703
has several forms:
17041704

17051705
<pre class='prod'>
1706-
<dfn><<track-repeat>></dfn> = repeat( [ <<integer [0,&infin;]>> ] , [ <<line-names>>? <<track-size>> ]+ <<line-names>>? )
1706+
<dfn><<track-repeat>></dfn> = repeat( [ <<integer [1, Infinity]>> ] , [ <<line-names>>? <<track-size>> ]+ <<line-names>>? )
17071707
<dfn><<auto-repeat>></dfn> = repeat( [ auto-fill | auto-fit ] , [ <<line-names>>? <<fixed-size>> ]+ <<line-names>>? )
1708-
<dfn><<fixed-repeat>></dfn> = repeat( [ <<integer [0,&infin;]>> ] , [ <<line-names>>? <<fixed-size>> ]+ <<line-names>>? )
1708+
<dfn><<fixed-repeat>></dfn> = repeat( [ <<integer [1, Infinity]>> ] , [ <<line-names>>? <<fixed-size>> ]+ <<line-names>>? )
17091709
</pre>
17101710

17111711
* The <<track-repeat>> variant can represent the repetition of any <<track-size>>,

0 commit comments

Comments
 (0)