Skip to content

Commit 59a826f

Browse files
committed
docstring update; Travis re-sync kick.
1 parent f58f172 commit 59a826f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adafruit_fram.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ def __init__(self, max_size, write_protect=False, wp_pin=None):
7676

7777
@property
7878
def write_wraparound(self):
79-
""" Determines if sequential writes will wrapaound the ``FRAM.max_size``
80-
address. If ``False``, and a requested write will extend beyond the
81-
maximum size, an exception is raised.
79+
""" Determines if sequential writes will wrapaound highest memory address
80+
(``len(FRAM)``) address. If ``False``, and a requested write will
81+
extend beyond the maximum size, an exception is raised.
8282
"""
8383
return self._wraparound
8484

@@ -114,7 +114,7 @@ def __len__(self):
114114
115115
.. code-block:: python
116116
117-
fram = adafruit_fram.FRAM()
117+
fram = adafruit_fram.FRAM_xxx() # xxx = 'I2C' or 'SPI'
118118
119119
# maximum size returned by len()
120120
len(fram)

0 commit comments

Comments
 (0)