Skip to content

Commit

Permalink
Merge pull request #12558 from lucasmazza/changelog-fixes
Browse files Browse the repository at this point in the history
Fix code blocks identation on AR and AS CHANGELOGs
  • Loading branch information
rafaelfranca committed Oct 16, 2013
2 parents fee49a1 + 2f1c9c8 commit 49bc23f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions activerecord/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,13 @@
* Reset @column_defaults when assigning `locking_column`.
We had a potential problem. For example:

class Post < ActiveRecord::Base
self.column_defaults # if we call this unintentionally before setting locking_column ...
self.locking_column = 'my_locking_column'
end
class Post < ActiveRecord::Base
self.column_defaults # if we call this unintentionally before setting locking_column ...
self.locking_column = 'my_locking_column'
end

Post.column_defaults["my_locking_column"]
=> nil # expected value is 0 !
Post.column_defaults["my_locking_column"]
=> nil # expected value is 0 !

*kennyj*

Expand Down
12 changes: 6 additions & 6 deletions activesupport/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 49bc23f

Please sign in to comment.