Skip to content

Commit f5e7609

Browse files
brentrubrentru
authored andcommitted
fix readme for sphinx
1 parent a212cc6 commit f5e7609

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

README.rst

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,23 @@ Usage Example
3232

3333
Create an Adafruit IO Client object
3434
.. code-block:: python
35-
io = RESTClient(ADAFRUIT_IO_USER, ADAFRUIT_IO_KEY, wifi)
35+
io = RESTClient(ADAFRUIT_IO_USER, ADAFRUIT_IO_KEY, wifi)
3636

37-
Sending `data` to an Adafruit IO feed
37+
Sending data to an Adafruit IO feed
3838
.. code-block:: python
39-
io.send_data(feed, data)
39+
io.send_data(feed, data)
4040

41-
Receiving `data` from an Adafruit IO feed
41+
Receiving data from an Adafruit IO feed
4242
.. code-block:: python
43-
data = io.receive_data(feed)
43+
data = io.receive_data(feed)
4444

45-
Creating a new feed named `circuitpython` with a description
45+
Creating a new feed named circuitpython with a description
4646
.. code-block:: python
47-
feed = io.create_new_feed('circuitpython', 'an Adafruit IO CircuitPython feed')
47+
feed = io.create_new_feed('circuitpython', 'an Adafruit IO CircuitPython feed')
4848

4949
Listing the record of a specified feed:
5050
.. code-block:: python
51-
feed = io.get_feed('circuitpython')
52-
53-
More usage examples are included in the `examples folder of this repository<<https://github.com/adafruit/Adafruit_CircuitPython_Adafruit_IO/blob/examples>`_
51+
feed = io.get_feed('circuitpython')
5452

5553
Contributing
5654
============

0 commit comments

Comments
 (0)