Skip to content

Commit 6965645

Browse files
authored
Fix subject-verb agreement
Change configure to configures
1 parent 08859fb commit 6965645

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
@@ -244,7 +244,7 @@ Morse morse(13);
244244

245245
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).
246246

247-
Notice that our `setup()` now has a call to `morse.begin()` which configure the pin that was set in the constructor.
247+
Notice that our `setup()` now has a call to `morse.begin()` which configures the pin that was set in the constructor.
248248

249249
Finally, to call the `dot()` and `dash()` functions, we need to prefix them with **morse**. - the name of the instance we want to use. We could have multiple instances of the `Morse` class, each on their own pin stored in the _pin private variable of that instance. By calling a function on a particular instance, we specify which instance's variables should be used during that call to a function. That is, if we had both:
250250

0 commit comments

Comments
 (0)