From 655bab118450e497db31f6a97e160a70b360167d Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Wed, 6 Jul 2022 16:05:40 +0000 Subject: https://www.w3.org/WAI/ARIA/apg/practices/names-and-descriptions/ says: "Start names with a capital letter; it helps some screen readers speak them with appropriate inflection." Anna Vyalkova already did that correctly when sending patches, but i ruined it when committing, so fix it now. --- man_html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'man_html.c') diff --git a/man_html.c b/man_html.c index 3c0078a8..f931dcb9 100644 --- a/man_html.c +++ b/man_html.c @@ -271,7 +271,7 @@ man_root_pre(const struct roff_meta *man, struct html *h) mandoc_asprintf(&title, "%s(%s)", man->title, man->msec); t = print_otag(h, TAG_DIV, "cr?", "head", "doc-pageheader", - "aria-label", "manual header line"); + "aria-label", "Manual header line"); print_otag(h, TAG_SPAN, "c", "head-ltitle"); print_text(h, title); @@ -294,7 +294,7 @@ man_root_post(const struct roff_meta *man, struct html *h) struct tag *t; t = print_otag(h, TAG_DIV, "cr?", "foot", "doc-pagefooter", - "aria-label", "manual footer line"); + "aria-label", "Manual footer line"); print_otag(h, TAG_SPAN, "c", "foot-left"); print_stagq(h, t); -- cgit