]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
man3type/: tfix
authorWu Zhenyu <wuzhenyu@ustc.edu>
Thu, 30 Mar 2023 17:02:07 +0000 (01:02 +0800)
committerAlejandro Colomar <alx@kernel.org>
Fri, 31 Mar 2023 20:45:42 +0000 (22:45 +0200)
Signed-off-by: Alejandro Colomar <alx@kernel.org>
man3type/size_t.3type
man3type/time_t.3type

index 97633a9767b4a2db0393c385eeeed6c9dec109d0..1c5894f45cc603203c9ced0a8dda70d494d1b215 100644 (file)
@@ -35,7 +35,7 @@ capable of storing values in the range
 .I ssize_t
 Used for a count of bytes or an error indication.
 It is a signed integer type
-capable of storing values al least in the range
+capable of storing values at least in the range
 .RB [ \-1 ,
 .BR SSIZE_MAX ].
 .SS Use with printf(3) and scanf(3)
index 1b9607358f5a919eebe6967da968c18ab3a6a972..2ba4f6833a30d5e80b7f921d426c566c71ccd492 100644 (file)
@@ -35,14 +35,14 @@ it is an integer type.
 .I suseconds_t
 Used for time in microseconds.
 It is a signed integer type
-capable of storing values al least in the range
+capable of storing values at least in the range
 .RB [ \-1 ,
 .BR 1000000 ].
 .TP
 .I useconds_t
 Used for time in microseconds.
 It is an unsigned integer type
-capable of storing values al least in the range
+capable of storing values at least in the range
 .RB [ 0 ,
 .BR 1000000 ].
 .SH STANDARDS