Skip to content

Commit

Permalink
Use proper section links to JSEP
Browse files Browse the repository at this point in the history
Complement to #2966
  • Loading branch information
dontcallmedom committed Jun 21, 2024
1 parent 3b1a1b4 commit 65d3ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webrtc.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ var respecConfig = {
el.appendChild(document.createTextNode(" ("));
jsepSections.forEach(function (s, i) {
var sectionLink = document.createElement("a");
sectionLink.href = "https://www.rfc-editor.org/rfc/rfc8829#section-" + s.slice(0, s.length - 1);
sectionLink.href = "https://www.rfc-editor.org/rfc/rfc9429#section-" + s.slice(0, s.length - 1);
sectionLink.textContent = "section " + s;
if (i > 0) {
if (i == jsepSections.length - 1) {
Expand Down

0 comments on commit 65d3ae3

Please sign in to comment.