README.md in quandl-1.1.0 vs README.md in quandl-1.1.1

- old
+ new

@@ -51,11 +51,11 @@ require 'quandl' Quandl::Dataset.get('WIKI/AAPL').data => ... data ... ``` -you can access the data much like you would other lists. In addition all the data column fields are mapped to their column_names for convenience: +You can access the data much like you would other lists. In addition all the data column fields are mapped to their column_names for convenience: ```ruby Quandl::Dataset.get('WIKI/AAPL').data.first.date => ... date ... ``` @@ -118,10 +118,10 @@ database = Quandl::Database.get('WIKI') database.data_fields => ["id", "name", "database_code", "description", "datasets_count", "downloads", "premium", "image"] ``` -You can then uses these methods in your code. Additionally you can access the data by using the hash equalivalent lookup. +You can then uses these methods in your code. Additionally you can access the data by using the hash equivalent lookup. ```ruby database = Quandl::Database.get('WIKI') database.database_code => 'WIKI'