From fad6d0bf5e4837c749a45b7828b4ddf70a96eeb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=B7=F0=90=91=91=F0=90=91=B4=F0=90=91=95=F0=90=91=91?= =?UTF-8?q?=F0=90=91=A9=F0=90=91=A4?= Date: Tue, 13 May 2025 16:49:38 +0700 Subject: [PATCH 1/3] Orthography: missing compound adjective hyphens for *-separated --- lib/html_sigs.mli | 4 ++-- lib/html_types.mli | 2 +- lib/svg_sigs.mli | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/html_sigs.mli b/lib/html_sigs.mli index 1cf169c8f..0029cce4c 100644 --- a/lib/html_sigs.mli +++ b/lib/html_sigs.mli @@ -1169,10 +1169,10 @@ module type T = sig (** Same, for URI attribute *) val uri_attrib : string -> uri wrap -> 'a attrib - (** Same, for a space separated list of values *) + (** Same, for a space-separated list of values *) val space_sep_attrib : string -> string list wrap -> 'a attrib - (** Same, for a comma separated list of values *) + (** Same, for a comma-separated list of values *) val comma_sep_attrib : string -> string list wrap -> 'a attrib end diff --git a/lib/html_types.mli b/lib/html_types.mli index 7ccd3d3cc..bf0119696 100644 --- a/lib/html_types.mli +++ b/lib/html_types.mli @@ -54,7 +54,7 @@ type nmtoken = string @see XML 1.0 *) type nmtokens = nmtoken list -(** One or more white space separated NMTOKEN values *) +(** One or more whitespace-separated NMTOKEN values *) (** {2 Data Types} *) diff --git a/lib/svg_sigs.mli b/lib/svg_sigs.mli index bd5bbfc9b..d1cc6786a 100644 --- a/lib/svg_sigs.mli +++ b/lib/svg_sigs.mli @@ -1038,10 +1038,10 @@ module type T = sig (** Same, for URI attribute *) val uri_attrib : string -> uri wrap -> 'a attrib - (** Same, for a space separated list of values *) + (** Same, for a space-separated list of values *) val space_sep_attrib : string -> string list wrap -> 'a attrib - (** Same, for a comma separated list of values *) + (** Same, for a comma-separated list of values *) val comma_sep_attrib : string -> string list wrap -> 'a attrib end From 864d8edb2033f7591358c5f68439648c75037ec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=B7=F0=90=91=91=F0=90=91=B4=F0=90=91=95=F0=90=91=91?= =?UTF-8?q?=F0=90=91=A9=F0=90=91=A4?= Date: Sat, 21 Jun 2025 22:57:02 +0700 Subject: [PATCH 2/3] =?UTF-8?q?Typo:=20subressource=20=E2=86=92=20subresou?= =?UTF-8?q?rce?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/html_types.mli | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/html_types.mli b/lib/html_types.mli index bf0119696..66b0097d5 100644 --- a/lib/html_types.mli +++ b/lib/html_types.mli @@ -424,7 +424,7 @@ type listed = [ | resetable | submitable | `Fieldset ] type formassociated = [ | listed | `Progress | `Meter | `Label ] -type subressource_integrity = [ | `Crossorigin | `Integrity ] +type subresource_integrity = [ | `Crossorigin | `Integrity ] (** @see *) (** Transparent elements. @@ -2294,7 +2294,7 @@ type style_attrib = [ | common | `Media | `Mime_type | `Scoped ] type script = [ | `Script ] type script_attrib = - [ | common | subressource_integrity + [ | common | subresource_integrity | `Async | `Charset | `Src | `Defer | `Script_type ] @@ -2319,7 +2319,7 @@ type link_content = notag type link_content_fun = notag type link_attrib = - [ | common | subressource_integrity + [ | common | subresource_integrity | `Hreflang | `Media | `Rel | `Href | `Sizes | `Mime_type ] From 6c45780243e3fa64f595722e72e41a886076428a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=B7=F0=90=91=91=F0=90=91=B4=F0=90=91=95=F0=90=91=91?= =?UTF-8?q?=F0=90=91=A9=F0=90=91=A4?= Date: Sun, 22 Jun 2025 00:57:27 +0700 Subject: [PATCH 3/3] update CHANGES.md --- CHANGES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 74ecef559..f914dc5c1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,8 @@ * Add support for the clip-path presentation attribute (#333 by Martin @MBodin Bodin) +* Fix typo for `subresource` & English orthographic fixes + (#345 by toastal) # 4.6.0