]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
man/: Unify spelling of 'multiplexer'
authorAlejandro Colomar <alx@kernel.org>
Thu, 25 Dec 2025 21:15:32 +0000 (22:15 +0100)
committerAlejandro Colomar <alx@kernel.org>
Fri, 26 Dec 2025 11:35:39 +0000 (12:35 +0100)
Both 'o' and 'e' are used in the manual pages:

        $ grep -rho multiplex.r man/ | sort| uniq -c
              4 multiplexer
              4 multiplexor

Let's stick to 'e', for consistency with __NR_multiplexer.

Reported-by: Helge Kreutzmann <debian@helgefjell.de>
Acked-by: "G. Branden Robinson" <g.branden.robinson@gmail.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
man/man3/getpt.3
man/man3/posix_openpt.3
man/man4/pts.4

index 49e0248562b0c9f6448690d807fbbe6d1d74d21d..1ecef24e716fe68dc28e6e3df9e7007e5efa7516 100644 (file)
@@ -22,7 +22,7 @@ Standard C library
 .BR getpt ()
 opens a new pseudoterminal device and returns a file descriptor
 that refers to that device.
-It is equivalent to opening the pseudoterminal multiplexor device
+It is equivalent to opening the pseudoterminal multiplexer device
 .P
 .in +4n
 .EX
@@ -30,7 +30,7 @@ open("/dev/ptmx", O_RDWR);
 .EE
 .in
 .P
-on Linux systems, though the pseudoterminal multiplexor device is located
+on Linux systems, though the pseudoterminal multiplexer device is located
 elsewhere on some systems that use the GNU C library.
 .SH RETURN VALUE
 .BR getpt ()
index c3efcba80fcf4fcae7ba9921e20a2cf2df6421de..611139248158693ea7bf526eb786d40fc89f3ed9 100644 (file)
@@ -79,7 +79,7 @@ It is part of the UNIX 98 pseudoterminal support (see
 .SH NOTES
 Some older UNIX implementations that support System V
 (aka UNIX 98) pseudoterminals don't have this function, but it
-can be easily implemented by opening the pseudoterminal multiplexor device:
+can be easily implemented by opening the pseudoterminal multiplexer device:
 .P
 .in +4n
 .EX
index 358ffc04da74bf2096c8684c73725b39206f22bd..18bc5283992fd4bc70e26e374d77a7f000461dc5 100644 (file)
@@ -10,7 +10,7 @@ ptmx, pts \- pseudoterminal master and slave
 .SH DESCRIPTION
 The file
 .I /dev/ptmx
-(the pseudoterminal multiplexor device)
+(the pseudoterminal multiplexer device)
 is a character file with major number 5 and
 minor number 2, usually with mode 0666 and ownership root:root.
 It is used to create a pseudoterminal master and slave pair.