Skip to content

Commit d9ddd3e

Browse files
author
smellai
committed
Merge branch 'master' of github.com:arduino/reference-en
2 parents 8e73de2 + 4832c63 commit d9ddd3e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Language/Functions/Communication/Serial/print.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ As of version 1.0, serial transmission is asynchronous; `Serial.print()` will re
145145
* #LANGUAGE# link:../flush[flush()]
146146
* #LANGUAGE# link:../println[println()]
147147
* #LANGUAGE# link:../write[write()]
148-
* #LANGUAGE# link:../serialEvent[SerialEvent()]
148+
* #LANGUAGE# link:../serialevent[SerialEvent()]
149149
* #LANGUAGE# link:https://www.arduino.cc/en/Tutorial/Memory[Memory]
150150

151151
--

Language/Functions/Interrupts/interrupts.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ subCategories: [ "Interrupts" ]
1818

1919
[float]
2020
=== Description
21-
Re-enables interrupts (after they've been disabled by link:../noInterrupts[nointerrupts()]. Interrupts allow certain important tasks to happen in the background and are enabled by default. Some functions will not work while interrupts are disabled, and incoming communication may be ignored. Interrupts can slightly disrupt the timing of code, however, and may be disabled for particularly critical sections of code.
21+
Re-enables interrupts (after they've been disabled by link:../nointerrupts[nointerrupts()]. Interrupts allow certain important tasks to happen in the background and are enabled by default. Some functions will not work while interrupts are disabled, and incoming communication may be ignored. Interrupts can slightly disrupt the timing of code, however, and may be disabled for particularly critical sections of code.
2222
[%hardbreaks]
2323

2424

Language/Structure/Control Structure/break.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ subCategories: [ "Control Structure" ]
1919
[float]
2020
=== Description
2121
[%hardbreaks]
22-
`break` is used to exit from a link:../for[for], link:../while[while] or link:../doWhile[do...while] loop, bypassing the normal loop condition. It is also used to exit from a link:../switchCase[switch case] statement.
22+
`break` is used to exit from a link:../for[for], link:../while[while] or link:../dowhile[do...while] loop, bypassing the normal loop condition. It is also used to exit from a link:../switchcase[switch case] statement.
2323
[%hardbreaks]
2424

2525
--
@@ -63,4 +63,4 @@ for (x = 0; x < 255; x ++)
6363
[role="language"]
6464

6565
--
66-
// SEE ALSO SECTION ENDS
66+
// SEE ALSO SECTION ENDS

0 commit comments

Comments
 (0)