aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2018-04-30 21:49:53 -0400
committerGitHub <noreply@github.com>2018-04-30 21:49:53 -0400
commitfd9fa7d41f3cc7f5277dfc670ea958673115a1f2 (patch)
tree8b78e6e715de36fe3fc98ac0b7387dcb1397679a
parentee6a431bb9071151d9d546856a6451b861907202 (diff)
parent95e9a28cdc35214bed322305d3d405ae6eee505e (diff)
downloadrails-fd9fa7d41f3cc7f5277dfc670ea958673115a1f2.tar.gz
rails-fd9fa7d41f3cc7f5277dfc670ea958673115a1f2.tar.bz2
rails-fd9fa7d41f3cc7f5277dfc670ea958673115a1f2.zip
Merge pull request #32775 from elebow/add-quotes-actioncontroller-rdoc
Add quotes to code in rdoc comment in ActionController [ci skip]
-rw-r--r--actionpack/lib/action_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 3378d6db0f..2e565d5d44 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -78,7 +78,7 @@ module ActionController
#
# You can retrieve it again through the same hash:
#
- # Hello #{session[:person]}
+ # "Hello #{session[:person]}"
#
# For removing objects from the session, you can either assign a single key to +nil+:
#