diff options
author | Eddie Lebow <elebow@users.noreply.github.com> | 2018-04-30 21:18:22 -0400 |
---|---|---|
committer | Eddie Lebow <elebow@users.noreply.github.com> | 2018-04-30 21:35:51 -0400 |
commit | 95e9a28cdc35214bed322305d3d405ae6eee505e (patch) | |
tree | 8b78e6e715de36fe3fc98ac0b7387dcb1397679a /actionpack/lib/action_controller | |
parent | ee6a431bb9071151d9d546856a6451b861907202 (diff) | |
download | rails-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/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/base.rb | 2 |
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+: # |