aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/CHANGELOG.md
diff options
context:
space:
mode:
authorLucas Mazza <lucastmazza@gmail.com>2013-10-16 10:53:43 -0300
committerLucas Mazza <lucastmazza@gmail.com>2013-10-16 10:53:43 -0300
commit2f1c9c8d60bde99cf337eca870dca60cbaf3a47a (patch)
tree21f89c5d5f96aaf4e0c5c55740060eb391cd331f /activesupport/CHANGELOG.md
parentfee49a10492efc99409c03f7096d5bd3377b0bbc (diff)
downloadrails-2f1c9c8d60bde99cf337eca870dca60cbaf3a47a.tar.gz
rails-2f1c9c8d60bde99cf337eca870dca60cbaf3a47a.tar.bz2
rails-2f1c9c8d60bde99cf337eca870dca60cbaf3a47a.zip
Fix code blocks identation on AR and AS CHANGELOGs
Diffstat (limited to 'activesupport/CHANGELOG.md')
-rw-r--r--activesupport/CHANGELOG.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/activesupport/CHANGELOG.md b/activesupport/CHANGELOG.md
index f1dd7c312d..246d94882b 100644
--- a/activesupport/CHANGELOG.md
+++ b/activesupport/CHANGELOG.md
@@ -22,14 +22,14 @@
You can do this:
- class JokeSubscriber < ActiveSupport::Subscriber
- # This is much easier to read!
- attach_to "active_record"
+ class JokeSubscriber < ActiveSupport::Subscriber
+ # This is much easier to read!
+ attach_to "active_record"
- def sql(event)
- puts "A rabbi and a priest walk into a bar..."
+ def sql(event)
+ puts "A rabbi and a priest walk into a bar..."
+ end
end
- end
This should make it easier to read and understand these subscribers.