aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorEddie Lebow <elebow@users.noreply.github.com>2018-04-30 21:18:22 -0400
committerEddie Lebow <elebow@users.noreply.github.com>2018-04-30 21:35:51 -0400
commit95e9a28cdc35214bed322305d3d405ae6eee505e (patch)
tree8b78e6e715de36fe3fc98ac0b7387dcb1397679a /actionpack
parentee6a431bb9071151d9d546856a6451b861907202 (diff)
downloadrails-95e9a28cdc35214bed322305d3d405ae6eee505e.tar.gz
rails-95e9a28cdc35214bed322305d3d405ae6eee505e.tar.bz2
rails-95e9a28cdc35214bed322305d3d405ae6eee505e.zip
Add quotes to code in rdoc comment in ActionController [ci skip]
The example code is meant to be a string.
Diffstat (limited to 'actionpack')
-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+:
#