Skip to content

Commit 169af31

Browse files
committed
Fix typos
1 parent 3e0a1c6 commit 169af31

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Initialization of XKNX object. Constructor may take several arguments like a ref
4747
await xknx.start()
4848
```
4949

50-
Asynchronous start of the XKNX object. `xknx.start()` will connect to a KNX/IP device and either build a tunnel or connect through Mulitcast UDP.
50+
Asynchronous start of the XKNX object. `xknx.start()` will connect to a KNX/IP device and either build a tunnel or connect through Multicast UDP.
5151

5252
```python
5353
await xknx.stop()

docs/xknx.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ For SECURE tunnels this setting selects an interface from a given keyfile.
8484
await xknx.start()
8585
```
8686

87-
`xknx.start()` will search for KNX/IP devices in the network and either build a KNX/IP-Tunnel or open a mulitcast KNX/IP-Routing connection. `start()` will not take any parameters.
87+
`xknx.start()` will search for KNX/IP devices in the network and either build a KNX/IP-Tunnel or open a multicast KNX/IP-Routing connection. `start()` will not take any parameters.
8888

8989
# [](#header-2)Stopping
9090

test/devices_tests/binary_sensor_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ async def test_process_callback_ignore_internal_state_no_counter(self):
245245
async_after_update_callback.assert_called_once_with(switch)
246246

247247
async def test_process_group_value_response(self):
248-
"""Test precess of GroupValueResponse telegrams."""
248+
"""Test process of GroupValueResponse telegrams."""
249249
xknx = XKNX()
250250
switch = BinarySensor(
251251
xknx,

xknx/io/transport/udp_transport.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def create_multicast_sock(
133133
return sock
134134

135135
async def connect(self) -> None:
136-
"""Connect UDP socket. Open UDP port and build mulitcast socket if necessary."""
136+
"""Connect UDP socket. Open UDP port and build multicast socket if necessary."""
137137
udp_transport_factory = UDPTransport.UDPTransportFactory(
138138
data_received_callback=self.data_received_callback,
139139
)

0 commit comments

Comments
 (0)