From d6a1f008d5b67db24d95fde9aefa448eb7a4ba05 Mon Sep 17 00:00:00 2001 From: Pierre-Anthony Lemieux Date: Fri, 15 Mar 2024 08:13:01 -0700 Subject: [PATCH] Update introduction boilerplate to use clause instead of section Closes https://github.com/SMPTE/html-pub/issues/240 --- smpte.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smpte.js b/smpte.js index ce05053..3f9ac1c 100644 --- a/smpte.js +++ b/smpte.js @@ -348,7 +348,7 @@ function insertIntroduction(docMetadata) { if (smpte.ENGDOC_PUBTYPES.has(docMetadata.pubType)) { let b = document.createElement("p"); - b.innerHTML = "This section is entirely informative and does not form an integral part of this Engineering Document."; + b.innerHTML = "This clause is entirely informative and does not form an integral part of this Engineering Document."; sec.insertBefore(b, h2.nextSibling) } }