Skip to content

Commit

Permalink
docs: fix fp1 typo in readme (#2188)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertjrodger committed Mar 17, 2021
1 parent 44e6e91 commit f8ba303
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ Input four `Document`s, each `document.blob` is an `ndarray([2])`

```python
with f, open('index.csv') as fp:
f.index_csv(fp1, field_resolver={'pic_url': 'uri'})
f.index_csv(fp, field_resolver={'pic_url': 'uri'})
```

</sup>
Expand All @@ -468,7 +468,7 @@ Each line in `index.csv` is constructed as a `Document`, CSV field `pic_url` map

```python
with f, open('index.ndjson') as fp:
f.index_ndjson(fp1, field_resolver={'question_id': 'id'})
f.index_ndjson(fp, field_resolver={'question_id': 'id'})
```

</sup>
Expand Down

0 comments on commit f8ba303

Please sign in to comment.