Skip to content

Commit c42181f

Browse files
authored
Update extensions.rst
1 parent 4ee4f9e commit c42181f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/source/extensions.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ First, let's implement reader interface:
4141
`YourSingleSheet` makes this simple task complex in order to show case its inner
4242
workings. Two abstract functions require implementation:
4343

44-
1. `row_iterator`: should return a row: either content arry or content index as long as
45-
`column_iterator` understands
44+
1. `row_iterator`: should return a row: either content arary or content index as long as
45+
`column_iterator` can use it to return the cell value.
4646

47-
2. `column_iterator`: should return cell values one by one.
47+
2. `column_iterator`: should iterate cell value from the given row.
4848

4949
.. literalinclude:: ../../examples/custom_yaml_reader.py
5050
:language: python
@@ -64,7 +64,7 @@ files on physical disk. "memory" means a file stream. "content" means a string b
6464
:lines: 36-41
6565

6666
Usually, this registration code was placed in __init__.py file at the top level of your
67-
extension source tree.
67+
extension source tree. You can take a look at any pyexcel plugins for reference.
6868

6969
**Test your reader**
7070

0 commit comments

Comments
 (0)