summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2025-07-22 23:28:16 +0200
committerAndreas K. Hüttel <dilfridge@gentoo.org>2025-07-24 19:27:44 +0200
commitc7742069a658dd9d266f74587b7e91a579a49d40 (patch)
tree1e4f8eed82e6a1d45db0b26c703c3c93320a755b /manual
parentd73149331156aaaf23f4f1e48c507aa804e102c3 (diff)
manual: Use @Theglibc{} at sentence start in terminal documentation
Fixes commit 5dd2a19ad5218261cee064 ("termios: manual: improve the explanation of various tty concepts") and commit c744519bad8106769760 ("termios: manual: document the SPEED_MAX and BAUD_MAX constants"). Reviewed-by: Collin Funk <collin.funk1@gmail.com>
Diffstat (limited to 'manual')
-rw-r--r--manual/terminal.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/manual/terminal.texi b/manual/terminal.texi
index 805b408fb2..8f4bb84692 100644
--- a/manual/terminal.texi
+++ b/manual/terminal.texi
@@ -1099,7 +1099,7 @@ depending on the policy of the kernel driver. In the latter case, a
subsequent call to @code{tcgetattr} may or may not reflect this
adjustment.
-@theglibc{} supports two interoperable interfaces for setting the line
+@Theglibc{} supports two interoperable interfaces for setting the line
speed: the POSIX.1 @code{speed_t} interface, which requires the use of a
set of enumerated constants, and the @code{baud_t} interface, a GNU
extension, which is guaranteed to use plain numeric values.
@@ -1175,7 +1175,7 @@ B0 B50 B75 B110 B134 B150 B200 B300 B600 B1200
B1800 B2400 B4800 B9600 B19200 B38400
@end smallexample
-@theglibc{} defines these additional constants:
+@Theglibc{} defines these additional constants:
@comment termios.h
@comment GNU
@@ -1267,7 +1267,7 @@ These aliases are obsolete.
@deftypevr Macro speed_t SPEED_MAX
@standards{GNU, termios.h}
-@theglibc{} defines the constant @code{SPEED_MAX} for the largest valid
+@Theglibc{} defines the constant @code{SPEED_MAX} for the largest valid
value of type @code{speed_t}. This value may be smaller than the
underlying C type can store.