Skip to content

Commit af18fb9

Browse files
Update singleLineComment.adoc
Minor typo fixed
1 parent e58cbed commit af18fb9

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)