Skip to content

Commit c185636

Browse files
committed
address requested docstring changes
1 parent cf8c59b commit c185636

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

adafruit_ble/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ def connections(self):
254254

255255
@property
256256
def name(self):
257-
"""The default name for this device. Used in advertisements and
257+
"""The name for this device. Used in advertisements and
258258
as the Device Name in the Generic Access Service, available to a connected peer.
259259
"""
260260
return self._adapter.name

adafruit_ble/advertising/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ def from_entry(cls, entry):
243243

244244
@property
245245
def rssi(self):
246-
"""Signal strength of the scanned advertisement. Only available on Advertisements created
247-
from ScanEntry objects. (read-only)"""
246+
"""Signal strength of the scanned advertisement. Only available on Advertisements returned
247+
from `BLERadio.start_scan()`. (read-only)"""
248248
return self._rssi
249249

250250
@classmethod

0 commit comments

Comments
 (0)