Skip to content

Commit 7467fa0

Browse files
Fix comment typo
1 parent dd3a12b commit 7467fa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

avr/cores/arduino/HardwareSerial.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ void HardwareSerial::begin(unsigned long baud, byte config)
117117
baud_setting = (F_CPU / 8 / baud - 1) / 2;
118118
}
119119

120-
// assign the baud_setting, a.k.a. ubbr (USART Baud Rate Register)
120+
// assign the baud_setting, a.k.a. ubrr (USART Baud Rate Register)
121121
*_ubrrh = baud_setting >> 8;
122122
*_ubrrl = baud_setting;
123123

0 commit comments

Comments
 (0)