Fix indentation for code block in changelog

This was showing up as an H1. Fixing the indentation here fixes the codeblock.
This commit is contained in:
Eileen M. Uchitelle 2016-02-17 18:32:58 -05:00
parent 6e0159ec7e
commit f57092ad72

@ -5,7 +5,7 @@
Example:
PriceEstimate.where(estimate_of: [Treasure.find(1), Car.find(2)])
# => SELECT "price_estimates".* FROM "price_estimates"
=> SELECT "price_estimates".* FROM "price_estimates"
WHERE (("price_estimates"."estimate_of_type" = 'Treasure' AND "price_estimates"."estimate_of_id" = 1)
OR ("price_estimates"."estimate_of_type" = 'Car' AND "price_estimates"."estimate_of_id" = 2))