Skip to content

Commit 36c9419

Browse files
committed
Merge pull request arduino#4514 from BrentWilkins/master
Fixed typo
2 parents 0cdc53c + 7f13f63 commit 36c9419

File tree

1 file changed

+1
-1
lines changed
  • hardware/arduino/avr/libraries/Wire/utility

1 file changed

+1
-1
lines changed

hardware/arduino/avr/libraries/Wire/utility/twi.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ uint8_t twi_readFrom(uint8_t address, uint8_t* data, uint8_t length, uint8_t sen
165165
// We need to remove ourselves from the repeated start state before we enable interrupts,
166166
// since the ISR is ASYNC, and we could get confused if we hit the ISR before cleaning
167167
// up. Also, don't enable the START interrupt. There may be one pending from the
168-
// repeated start that we sent outselves, and that would really confuse things.
168+
// repeated start that we sent ourselves, and that would really confuse things.
169169
twi_inRepStart = false; // remember, we're dealing with an ASYNC ISR
170170
do {
171171
TWDR = twi_slarw;

0 commit comments

Comments
 (0)