Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lcarcone committed Jan 10, 2025
1 parent 8907bda commit ca40483
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions transitions/wide-review-request.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,12 @@ <h2 id="resources">Other resources</h2>
let INPLACE = "<li><a href='https://www.w3.org/2003/01/republishing/'>In-place modification of W3C Technical Reports</a></li>";
function listItem(text, query) {
let id = "option" + Math.round(Math.random() * 10000);
return "<li>" + `<div class="radio-item">` + `<input type='radio' name='option' id='${id}'>` + `<label for="${id}">${text}</a>` + "</div>";
+"</li>";
return `<li>`
+ `<div class='radio-item'>`
+ `<input type='radio' name='option' id='${id}'>`
+ `<label for="${id}">${text}</a>`
+ `</div>`
+ `</li>`;
}

function nextSteps(spec) {
Expand Down

0 comments on commit ca40483

Please sign in to comment.