diff options
author | T.J. Schuck <tj@tjschuck.com> | 2017-11-22 14:45:51 -0500 |
---|---|---|
committer | T.J. Schuck <tj@tjschuck.com> | 2017-11-22 14:45:51 -0500 |
commit | 3063ace1070e4ddb8d0cc09fbd23049e7b21617a (patch) | |
tree | e5d5a5978ec1ee537cc7e2352df2b2e7c7614b64 /activerecord | |
parent | 858baa099b26f6b3e9eb8376d9c09559fe5cc599 (diff) | |
download | rails-3063ace1070e4ddb8d0cc09fbd23049e7b21617a.tar.gz rails-3063ace1070e4ddb8d0cc09fbd23049e7b21617a.tar.bz2 rails-3063ace1070e4ddb8d0cc09fbd23049e7b21617a.zip |
Update incorrect backtick usage in RDoc to teletype
[ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/migration.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb index 360bf25a8c..15e9c09ffb 100644 --- a/activerecord/lib/active_record/migration.rb +++ b/activerecord/lib/active_record/migration.rb @@ -737,8 +737,8 @@ module ActiveRecord # Used to specify an operation that is only run when migrating up # (for example, populating a new column with its initial values). # - # In the following example, the new column `published` will be given - # the value `true` for all existing records. + # In the following example, the new column +published+ will be given + # the value +true+ for all existing records. # # class AddPublishedToPosts < ActiveRecord::Migration[5.2] # def change |