Skip to content

Commit 305a180

Browse files
authored
Merge pull request #874 from mattborja/patch-1
Fix misspellings in headings
2 parents f256bb6 + 5af83af commit 305a180

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: Language/Functions/Communication/Wire/endTransmission.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ title: endTransmission()
1313
This function ends a transmission to a peripheral device that was begun by `beginTransmission()` and transmits the bytes that were queued by `write()`. As of Arduino 1.0.1, `endTransmission()` accepts a boolean argument changing its behavior for compatibility with certain I2C devices. If true, `endTransmission()` sends a stop message after transmission, releasing the I2C bus. If false, `endTransmission()` sends a restart message after transmission. The bus will not be released, which prevents another controller device from transmitting between messages. This allows one controller device to send multiple transmissions while in control. The default value is true.
1414

1515
[float]
16-
=== Syntaxx
16+
=== Syntax
1717
`Wire.endTransmission()`
1818
`Wire.endTransmission(stop)`
1919

2020
[float]
21-
=== Parameterss
21+
=== Parameters
2222

2323
* _stop_: true or false. True will send a stop message, releasing the bus after transmission. False will send a restart, keeping the connection active.
2424
[float]
@@ -31,4 +31,4 @@ This function ends a transmission to a peripheral device that was begun by `begi
3131
* _4_: other error.
3232
* _5_: timeout
3333
--
34-
//OVERVIEW SECTION ENDS
34+
//OVERVIEW SECTION ENDS

0 commit comments

Comments
 (0)