Fix typo in variable name

This commit is contained in:
Martin Michlmayr 2017-05-22 18:18:49 +02:00 committed by Brett Smith
parent 97222c2f75
commit 419f52abe3

View file

@ -31,7 +31,7 @@ Here's an example of using the Python library, complete with caching results::
hist_rate = rate.Rate.from_json_file(json_response)
if loader.should_cache():
cache_writer.save_rate(hist_rate)
# Rates are available from the hist_rates.rates dict.
# Rates are available from the hist_rate.rates dict.
Running tests
-------------