Skip to content

Commit e69e0a8

Browse files
authored
Editorial: fix floating steps in IPv6 parser
And align with https://github.com/whatwg/spec-factory.
1 parent 5252665 commit e69e0a8

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ on:
1212
jobs:
1313
build:
1414
name: Build
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 2
20-
- uses: actions/setup-python@v5
20+
- uses: actions/setup-python@v6
2121
with:
22-
python-version: "3.11"
22+
python-version: "3.14"
2323
- run: pip install bikeshed && bikeshed update
2424
# Note: `make deploy` will do a deploy dry run on PRs.
2525
- run: make deploy

url.bs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1310,14 +1310,13 @@ actually doing that with the editors of this document first.
13101310
<ol>
13111311
<li><p>Let <var>number</var> be <a>c</a> interpreted as decimal number.
13121312

1313-
<li>
1314-
<p>If <var>ipv4Piece</var> is null, then set <var>ipv4Piece</var> to <var>number</var>.
1313+
<li><p>If <var>ipv4Piece</var> is null, then set <var>ipv4Piece</var> to <var>number</var>.
13151314

1316-
<p>Otherwise, if <var>ipv4Piece</var> is 0, <a>IPv4-in-IPv6-invalid-code-point</a>
1317-
<a>validation error</a>, return failure.
1315+
<li><p>Otherwise, if <var>ipv4Piece</var> is 0, <a>IPv4-in-IPv6-invalid-code-point</a>
1316+
<a>validation error</a>, return failure.
13181317

1319-
<p>Otherwise, set <var>ipv4Piece</var> to <var>ipv4Piece</var> &times; 10 +
1320-
<var>number</var>.
1318+
<li><p>Otherwise, set <var>ipv4Piece</var> to <var>ipv4Piece</var> &times; 10 +
1319+
<var>number</var>.
13211320

13221321
<li><p>If <var>ipv4Piece</var> is greater than 255, <a>IPv4-in-IPv6-out-of-range-part</a>
13231322
<a>validation error</a>, return failure.

0 commit comments

Comments
 (0)