Skip to content

Commit 3323a24

Browse files
Eelistkoeppe
authored andcommitted
[rand, atomics] Don't needlessly escape underscores. (#1568)
The 'underscore' package already makes '_' in text behave as \_.
1 parent f04c1dc commit 3323a24

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/atomics.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@
12391239
\end{itemdecl}
12401240

12411241
\begin{itemdescr}
1242-
\effects Equivalent to: \tcode{return fetch\_add(1);}
1242+
\effects Equivalent to: \tcode{return fetch_add(1);}
12431243
\end{itemdescr}
12441244

12451245
\indexlibrarymember{operator\dcr}{atomic<T*>}%
@@ -1250,7 +1250,7 @@
12501250
\end{itemdecl}
12511251

12521252
\begin{itemdescr}
1253-
\effects Equivalent to: \tcode{return fetch\_sub(1);}
1253+
\effects Equivalent to: \tcode{return fetch_sub(1);}
12541254
\end{itemdescr}
12551255

12561256
\indexlibrarymember{operator++}{atomic<T*>}%

source/numerics.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,7 @@
14351435
If integer-valued,
14361436
an entity may optionally be further characterized as
14371437
\techterm{signed} or \techterm{unsigned},
1438-
according to \tcode{numeric\_limits<T>::is\_signed}.
1438+
according to \tcode{numeric_limits<T>::is_signed}.
14391439

14401440
\pnum
14411441
Unless otherwise specified,

0 commit comments

Comments
 (0)