diff options
author | dkegel-fastly <[email protected]> | 2024-04-19 06:57:01 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2024-04-19 06:57:01 -0700 |
commit | 39029cc37604c175c8b512478ba60ab617e79960 (patch) | |
tree | 16b9504cf2c4a9cd2f699542cf33e008f0b83238 /src/machine/machine_rp2040_i2c.go | |
parent | 712275572554d0ba8ee85e722fef8d6c91d6531a (diff) | |
download | tinygo-39029cc37604c175c8b512478ba60ab617e79960.tar.gz tinygo-39029cc37604c175c8b512478ba60ab617e79960.zip |
Run Nick G's spellchecker github.com/client9/misspell, carefuly fix what it found (#4235)
Diffstat (limited to 'src/machine/machine_rp2040_i2c.go')
-rw-r--r-- | src/machine/machine_rp2040_i2c.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/machine_rp2040_i2c.go b/src/machine/machine_rp2040_i2c.go index d51e14b8f..1b66a8687 100644 --- a/src/machine/machine_rp2040_i2c.go +++ b/src/machine/machine_rp2040_i2c.go @@ -348,7 +348,7 @@ func (i2c *I2C) tx(addr uint8, tx, rx []byte, timeout_us uint64) (err error) { } if abort || last { // If the transaction was aborted or if it completed - // successfully wait until the STOP condition has occured. + // successfully wait until the STOP condition has occurred. // TODO Could there be an abort while waiting for the STOP // condition here? If so, additional code would be needed here |