Skip to content

Commit 90311c7

Browse files
Update content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md
Co-authored-by: per1234 <accounts@perglass.com>
1 parent 6fa509f commit 90311c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/learn/08.contributions/03.arduino-creating-library-guide/arduino-creating-library-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Second, we now create an instance of the Morse class called **morse**:
226226
Morse morse(13);
227227
```
228228

229-
When this line gets executed (which actually happens even before the `setup()` function), the constructor for the Morse class will be called, and passed the argument you've given here (in this case, just 13).
229+
When this line gets executed (which actually happens even before the `setup()` function), the constructor for the `Morse` class will be called, and passed the argument you've given here (in this case, just 13).
230230

231231
Notice that our `setup()` is now empty; that's because the call to `pinMode()` happens inside the library (when the instance is constructed).
232232

0 commit comments

Comments
 (0)