Skip to content

Commit a8d33d4

Browse files
authored
Merge pull request arduino#288 from per1234/fix-equalto-example-formatting
Fix formatting of == reference page's example code
2 parents 88aeb47 + 951e63e commit a8d33d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Language/Structure/Comparison Operators/equalTo.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ x == y; // Ist true, wenn x gleich y ist und false, wenn x nicht gleich y ist
4848

4949
[source,arduino]
5050
----
51-
if (x==y) { // Prüft, ob x gleich y ist
51+
if (x == y) { // Prüft, ob x gleich y ist
5252
// Tue etwas nur dann, wenn das Vergleichsergebnis wahr ist
5353
}
5454
----

0 commit comments

Comments
 (0)