Skip to content

Commit 309efcc

Browse files
committed
Make markup valid
The newly added content was placed inside the "See Also" section, which caused the generation process to fail: ERROR 2020/07/15 05:00:40 Language/Functions/Bits and Bytes/bitClear.adoc: asciidoctor: WARNING: <stdin>: line 69: section title out of sequence: expected level 1, got level 2 ERROR 2020/07/15 05:00:40 Language/Functions/Bits and Bytes/bitClear.adoc: asciidoctor: WARNING: <stdin>: line 71: unterminated open block
1 parent 341f158 commit 309efcc

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

Language/Functions/Bits and Bytes/bitClear.adoc

+10-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ Clears (writes a 0 to) a bit of a numeric variable.
4040
// OVERVIEW SECTION ENDS
4141

4242

43-
// SEE ALSO SECTION
44-
[#see_also]
43+
44+
// HOW TO USE SECTION STARTS
45+
[#howtouse]
4546
--
4647

4748
[float]
@@ -67,10 +68,17 @@ Serial.print(bitClear(x,n)); //printing the output of the bitClear(x,n)
6768
[float]
6869
=== Notes and Warnings
6970
The indexing of the rightmost bit starts from 0, so `n=1` clears the second bit from the right. If the bit at any given position is already zero, `x` is returned unchanged.
71+
--
72+
// HOW TO USE SECTION ENDS
73+
7074

7175
Both `x` and `n` must be integers.
7276

77+
// SEE ALSO SECTION
78+
[#see_also]
7379
--
80+
81+
[float]
7482
=== See also
7583

7684
--

0 commit comments

Comments
 (0)