aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2016-06-06 18:59:25 +0200
committerDavid Heinemeier Hansson <david@loudthinking.com>2016-06-06 18:59:25 +0200
commit3da81f89ab83a2501fd1ea2710e5e3bc16a87a56 (patch)
treefa0213627f862c215175798c4fd4bca71d3d3f21 /guides
parent3fc5577363dc4049cd1d0bba8f3fa9296f1ced57 (diff)
parentd2a69d319b3f8bc9591c470516d9315d7883c823 (diff)
downloadrails-3da81f89ab83a2501fd1ea2710e5e3bc16a87a56.tar.gz
rails-3da81f89ab83a2501fd1ea2710e5e3bc16a87a56.tar.bz2
rails-3da81f89ab83a2501fd1ea2710e5e3bc16a87a56.zip
Merge pull request #25279 from maclover7/jm-add-backticks-1
Add backticks to `ActiveRecord::Base.where`
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: