Skip to content
This repository has been archived by the owner on Apr 30, 2022. It is now read-only.

Commit

Permalink
Typo fixes (#76)
Browse files Browse the repository at this point in the history
* Fixed small typo in detailed method guide

* Other small typo fixes
  • Loading branch information
mikkel14 authored and mbasset committed Aug 17, 2016
1 parent e2540dc commit a69b70c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions FOR_ANALYSTS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Quick Method Guide - Quandl-Python

This quick guide offers convienent ways to retrieve individual datasets or datatables with the Python package without the need for complex commands.
This quick guide offers convenient ways to retrieve individual datasets or datatables with the Python package without the need for complex commands.

## Retrieving Data

Expand Down Expand Up @@ -149,7 +149,7 @@ For more information on how to use and manipulate the resulting data see the [pa

#### Things to note

* Some datatables will return `sample` data if a valid api key is not used. If you are not recieving all of the expected data please double check your API key.
* Some datatables will return `sample` data if a valid api key is not used. If you are not receiving all of the expected data please double check your API key.
* When using the paginate=True option depending on the total number of rows in the result set you may receive an error indicating that there are more pages that have not been downloaded. This is due to a very large result sets that would be too large to send via the analyst method. If this happens we recommend you take one of two approaches:
* *(recommended)* Refine your filter parameters to retrieve a smaller results set
* Use the the [Detailed](./FOR_DEVELOPERS.md) method to iterate through more of the data.
Expand Down
4 changes: 2 additions & 2 deletions FOR_DEVELOPERS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Detailed Method Guide - Quandl/Python

In addition to the Quick methods for retrieivng data, some additional commands may be used for more querying specificity. These include:
In addition to the Quick methods for retrieving data, some additional commands may be used for more querying specificity. These include:

* Retrieving metadata without data
* Customizing how data is returned more granularly
Expand Down Expand Up @@ -303,4 +303,4 @@ quandl.Database.all().current_page
=> 1
quandl.Database.all()['current_page']
=> 1
```
```

0 comments on commit a69b70c

Please sign in to comment.