README.markdown in arel-3.0.2 vs README.markdown in arel-3.0.3

- old
+ new

@@ -81,10 +81,10 @@ The examples above are fairly simple and other libraries match or come close to matching the expressiveness of Arel (e.g., `Sequel` in Ruby). #### Inline math operations -Suppose we have a table `products` with prices in different currencies. And we have a table currency_rates, of constantly changing currency rates. In Arel: +Suppose we have a table `products` with prices in different currencies. And we have a table `currency_rates`, of constantly changing currency rates. In Arel: products = Arel::Table.new(:products) products.columns # => [products[:id], products[:name], products[:price], products[:currency_id]] currency_rates = Arel::Table.new(:currency_rates)