From f57092ad728fa1de06c4f5fd9d09dcc2c4738fd9 Mon Sep 17 00:00:00 2001 From: "Eileen M. Uchitelle" Date: Wed, 17 Feb 2016 18:32:58 -0500 Subject: [PATCH] Fix indentation for code block in changelog This was showing up as an H1. Fixing the indentation here fixes the codeblock. --- activerecord/CHANGELOG.md | 8 ++++---- 1 file 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* -- GitLab