Skip to content

Commit dfa04e4

Browse files
authored
Merge pull request arduino#313 from robsoncouto/master
Fix in see also section for compound bitwise OR and XOR
2 parents fe6e071 + 46e8e13 commit dfa04e4

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

Language/Structure/Compound Operators/compoundBitwiseOr.adoc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ categories: [ "Structure" ]
55
subCategories: [ "Compound Operators" ]
66
---
77

8-
9-
10-
11-
128
= |= Compound Bitwise OR
139

1410

@@ -112,7 +108,7 @@ myByte |= B00000011 == B10101011;
112108
=== See also
113109

114110
[role="language"]
115-
* #LANGUAGE# link:../../bitwise-operators/bitwiseor[& Bitwise OR]
111+
* #LANGUAGE# link:../../bitwise-operators/bitwiseor[| Bitwise OR]
116112

117113
--
118114
// SEE ALSO SECTION ENDS

Language/Structure/Compound Operators/compoundBitwiseXor.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ myByte ^= B00000011 == B10101001;
108108
=== See also
109109

110110
[role="language"]
111-
* #LANGUAGE# link:../../bitwise-operators/bitwisexor[& Bitwise XOR]
111+
* #LANGUAGE# link:../../bitwise-operators/bitwisexor[^ Bitwise XOR]
112112

113113
--
114114
// SEE ALSO SECTION ENDS

0 commit comments

Comments
 (0)