Skip to content

Commit abca571

Browse files
committed
Fix typo in chapter 11
1 parent d0aa015 commit abca571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/11-usart/buffer-overrun.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ so let me quote myself:
5252
Our pangram has a length of 45 bytes. That means it's going to take, at least, 3,900 microseconds
5353
(`45 bytes / (11,520 bytes/s) = 3,906 us`) to send the string. The processor is working at 8 MHz,
5454
where executing an instruction takes 125 nanoseconds, so it's likely going to be done with the `for`
55-
loop is less than 3,900 microseconds.
55+
loop in less than 3,900 microseconds.
5656

5757
We can actually time how long it takes to execute the `for` loop. `aux11::init()` returns a
5858
`MonoTimer` (monotonic timer) value that exposes an `Instant` API that's similar to the one in

0 commit comments

Comments
 (0)