aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2022-07-06 16:05:40 +0000
committerIngo Schwarze <schwarze@openbsd.org>2022-07-06 16:05:40 +0000
commit45e74416dac588344a02622e7c0a76a4cbde2b95 (patch)
tree486ff815903c05ca7ca13d107c55a8ab04593483 /mdoc_html.c
parente50d7a20cff8283cdc0c411da7b429708a6a62e3 (diff)
downloadmandoc-45e74416dac588344a02622e7c0a76a4cbde2b95.tar.gz
mandoc-45e74416dac588344a02622e7c0a76a4cbde2b95.tar.zst
mandoc-45e74416dac588344a02622e7c0a76a4cbde2b95.zip
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.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r--mdoc_html.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index a6a707b4..74d753a7 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.349 2022/07/06 15:26:23 schwarze Exp $ */
+/* $Id: mdoc_html.c,v 1.350 2022/07/06 16:05:40 schwarze Exp $ */
/*
* Copyright (c) 2014-2022 Ingo Schwarze <schwarze@openbsd.org>
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -456,7 +456,7 @@ mdoc_root_post(const struct roff_meta *meta, 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);
@@ -489,7 +489,7 @@ mdoc_root_pre(const struct roff_meta *meta, struct html *h)
meta->title, meta->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);