Skip to content

Commit aad61b5

Browse files
authored
Fix typo of atomic-structure.md (#4584)
Fix typo of "atomic::operator|;=" to "atomic::operator|="
1 parent 53a2655 commit aad61b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)