aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@gmail.com>2016-02-17 18:32:58 -0500
committerEileen M. Uchitelle <eileencodes@gmail.com>2016-02-17 18:32:58 -0500
commitf57092ad728fa1de06c4f5fd9d09dcc2c4738fd9 (patch)
tree66215c46f93d703ea0b0f293955fed39fd97e971 /activerecord
parent6e0159ec7eef0a4b8bdc71cedad73dc47d622d7d (diff)
downloadrails-f57092ad728fa1de06c4f5fd9d09dcc2c4738fd9.tar.gz
rails-f57092ad728fa1de06c4f5fd9d09dcc2c4738fd9.tar.bz2
rails-f57092ad728fa1de06c4f5fd9d09dcc2c4738fd9.zip
Fix indentation for code block in changelog
This was showing up as an H1. Fixing the indentation here fixes the codeblock.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index b9d99d843a..ba1280443d 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -4,10 +4,10 @@
Example:
- PriceEstimate.where(estimate_of: [Treasure.find(1), Car.find(2)])
- # => 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))
+ PriceEstimate.where(estimate_of: [Treasure.find(1), Car.find(2)])
+ => 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))
*Philippe Huibonhoa*