Skip to content

Commit 448d3fd

Browse files
authored
close #43 Minor typo fix in singleLineComment.adoc
From reference-en pr 639 arduino/reference-en#639
1 parent a014a18 commit 448d3fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Language/Structure/Further Syntax/singleLineComment.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ subCategories: [ "Further Syntax" ]
2121
*Comments* are lines in the program that are used to inform yourself or others about the way the program works. They are ignored by the compiler, and not exported to the processor, so they don't take up any space in the microcontroller's flash memory. Comments' only purpose is to help you understand (or remember), or to inform others about how your program works.
2222
[%hardbreaks]
2323

24-
A *single line comment* begins with `//` (two adjacent slashes). This comment ends automatically at the end of a line. whatever follows `//` till the end of a line will be ignored by the compiler.
24+
A *single line comment* begins with `//` (two adjacent slashes). This comment ends automatically at the end of a line. Whatever follows `//` till the end of a line will be ignored by the compiler.
2525
--
2626
// OVERVIEW SECTION ENDS
2727

0 commit comments

Comments
 (0)