Corrected formatting errors in String examples

This commit is contained in:
Tom Igoe 2010-08-11 20:26:10 +00:00
parent c6a73fa803
commit 691e9cab36
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ void setup() {
void loop() {
// adding a constant integer to a string:
stringThree = stringOne + 123;
Serial.println(stringThree); // prints "You added 123"
Serial.println(stringThree); // prints "stringThree = 123"
// adding a constant long interger to a string:
stringThree = stringOne + 123456789;