Skip to content

Commit fd84156

Browse files
committed
cores: arduino: Fix typos
Fix typo in comments. Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
1 parent 8f7c7db commit fd84156

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cores/arduino/Arduino.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
#undef DIGITAL_PIN_CHECK_UNIQUE
3434

35-
/* Return the index of it if matched, oterwise return 0 */
35+
/* Return the index of it if matched, otherwise return 0 */
3636
#define LED_BUILTIN_INDEX_BY_REG_AND_PINNUM(n, p, i, dev, num) \
3737
(DIGITAL_PIN_EXISTS(n, p, i, dev, num) ? i : 0)
3838

cores/arduino/zephyrPrint.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ size_t print_number_base_pow2(void *ctx, unsigned long long ull, unsigned bits)
8484

8585
/*
8686
* This is the default implementation.
87-
* It will be overridden by subclassese.
87+
* It will be overridden by subclasses.
8888
*/
8989
size_t arduino::Print::write(const uint8_t *buffer, size_t size) {
9090
size_t i;

0 commit comments

Comments
 (0)