Skip to content

Commit

Permalink
Fix typo in explanation about updated_at field (#74)
Browse files Browse the repository at this point in the history
* It was confusing earlier
  • Loading branch information
kriskhaira authored and antstorm committed Mar 20, 2018
1 parent f2ba99b commit fad2c23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Money.us_dollar(100).exchange_to("CAD") # Money.new(124, "CAD")
eu_bank.exchange_with(Money.new(100, "CAD"), "USD") # Money.new(80, "USD")
```

For performance reasons, you may prefer to read from a file instead. Furthermore, ECB publishes their rates daily. It makes sense to save the rates in a file to read from. It also adds an __update_at__ field so that you can manage the update.
For performance reasons, you may prefer to read from a file instead. Furthermore, ECB publishes their rates daily. It makes sense to save the rates in a file to read from. It also adds an `updated_at` field so that you can manage the update.

``` ruby
# cached location
Expand Down

0 comments on commit fad2c23

Please sign in to comment.