aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2016-06-04 11:11:42 -0400
committerJon Moss <me@jonathanmoss.me>2016-06-04 11:11:42 -0400
commitd2a69d319b3f8bc9591c470516d9315d7883c823 (patch)
treef0fa685c2c1da7e5d653af1361767e0aafc6e3e8 /guides
parent755f6bf3d3d568bc0af2c636be2f6df16c651eb1 (diff)
downloadrails-d2a69d319b3f8bc9591c470516d9315d7883c823.tar.gz
rails-d2a69d319b3f8bc9591c470516d9315d7883c823.tar.bz2
rails-d2a69d319b3f8bc9591c470516d9315d7883c823.zip
Add backticks to `ActiveRecord::Base.where`
[ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/5_0_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/5_0_release_notes.md b/guides/source/5_0_release_notes.md
index 638547565c..a07ce7e859 100644
--- a/guides/source/5_0_release_notes.md
+++ b/guides/source/5_0_release_notes.md
@@ -50,7 +50,7 @@ ToDo...
Defines an attribute with a type on a model. It will override the type of existing attributes if needed.
This allows control over how values are converted to and from SQL when assigned to a model.
-It also changes the behavior of values passed to ActiveRecord::Base.where, which lets use our domain objects across much of Active Record,
+It also changes the behavior of values passed to `ActiveRecord::Base.where`, which lets use our domain objects across much of Active Record,
without having to rely on implementation details or monkey patching.
Some things that you can achieve with this: