Skip to content

Commit 39c3417

Browse files
committed
fixup: operators
1 parent 863ff84 commit 39c3417

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/lib-intro.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1917,7 +1917,7 @@
19171917
\tcode{allocation_result<X::pointer>\{ptr, count\}}
19181918
where \tcode{ptr} is memory allocated for an array of \tcode{count} \tcode{T}
19191919
and such an object is created but array elements are not constructed,
1920-
such that $\tcode{count} >= \tcode{n}$.
1920+
such that $\tcode{count} \geq \tcode{n}$.
19211921
\tcode{allocate_at_least} may throw an appropriate exception.
19221922
See Note C, below. &
19231923
See Note D, below. \\ \rowsep
@@ -1933,7 +1933,7 @@
19331933
\tcode{req} be the value passed as the first argument of that call.
19341934
\tcode{p} is equal to \tcode{ret.ptr} and
19351935
\tcode{n} is a value such that
1936-
$\tcode{req} <= \tcode{n} <= \tcode{ret.count}$.
1936+
$\tcode{req} \leq \tcode{n} \leq \tcode{ret.count}$.
19371937
\item
19381938
Otherwise, \tcode{p} is a value obtained from \tcode{allocate}.
19391939
\tcode{n} equals the value passed as the first argument

source/utilities.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8379,7 +8379,7 @@
83798379
\tcode{allocation_result<T*>\{ptr, count\}},
83808380
where \tcode{ptr} is a pointer to
83818381
the initial element of an array of \tcode{count} \tcode{T} and
8382-
$\tcode{count} >= \tcode{n}$.
8382+
$\tcode{count} \geq \tcode{n}$.
83838383

83848384
\pnum
83858385
\throws
@@ -8409,7 +8409,7 @@
84098409
let \tcode{ret} be the value returned and
84108410
\tcode{req} be the value passed as the first argument to that call.
84118411
\tcode{p} is equal to \tcode{ret.ptr} and
8412-
\tcode{n} is a value such that $\tcode{req} <= \tcode{n} <= \tcode{ret.count}$.
8412+
\tcode{n} is a value such that $\tcode{req} \leq \tcode{n} \leq \tcode{ret.count}$.
84138413
\item
84148414
Otherwise, \tcode{p} is a pointer value obtained from \tcode{allocate}.
84158415
\tcode{n} equals the value passed as the first argument

0 commit comments

Comments
 (0)