summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWu Zhenyu <wuzhenyu@ustc.edu>2023-03-31 01:02:07 +0800
committerAlejandro Colomar <alx@kernel.org>2023-03-31 22:45:42 +0200
commitacd7fbf633c9630cf1ea5de62ee688eeec04e31c (patch)
treef0d9de3eb34ffcfddcda9ec95685ed9d1915743e
parentb460ec1e0fea2f0e8a1e2b54993ee5520fbf85c1 (diff)
man3type/: tfix
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--man3type/size_t.3type2
-rw-r--r--man3type/time_t.3type4
2 files changed, 3 insertions, 3 deletions
diff --git a/man3type/size_t.3type b/man3type/size_t.3type
index 97633a976..1c5894f45 100644
--- a/man3type/size_t.3type
+++ b/man3type/size_t.3type
@@ -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)
diff --git a/man3type/time_t.3type b/man3type/time_t.3type
index 1b9607358..2ba4f6833 100644
--- a/man3type/time_t.3type
+++ b/man3type/time_t.3type
@@ -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