Skip to content

Commit 3ff1d35

Browse files
authored
Merge pull request #4949 from MicrosoftDocs/main
6/15/2023 10:30AM Publishing
2 parents 8d3776b + ecf199a commit 3ff1d35

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/c-runtime-library/to-functions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ The `towlower` and `towupper` functions return a converted copy of `c` if and on
6464
#include <ctype.h>
6565
#include <string.h>
6666

67-
char msg[] = "Some of THESE letters are Capitals.";
67+
char msg[] = "Some of THESE letters are Uppercase.";
6868
char *p;
6969

7070
int main( void )
@@ -85,8 +85,8 @@ int main( void )
8585
```
8686
8787
```Output
88-
Some of THESE letters are Capitals.
89-
sOME OF these LETTERS ARE cAPITALS.
88+
Some of THESE letters are Uppercase.
89+
sOME OF these LETTERS ARE uPPERCASE.
9090
```
9191

9292
## See also

docs/standard-library/atomic-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ The result of the bitwise "and" (`&`).
250250

251251
This operator performs a read-modify-write operation to replace the stored value of **`*this`** with a bitwise "and" (`&`) of *`Value`* and the current value that is stored in **`*this`**, within the constraints of the `memory_order_seq_cst` [`memory_order`](atomic-enums.md).
252252

253-
## <a name="op_or_eq"></a> `atomic::operator|;=`
253+
## <a name="op_or_eq"></a> `atomic::operator|=`
254254

255255
Performs a bitwise "or" (`|`) on a specified value and the stored value of **`*this`**. Used only by integral specializations.
256256

0 commit comments

Comments
 (0)