Fix title for example of removing data from session [ci skip]

After #31685 the description says different what
we expect to see in the example. Change `assign that key to be nil` to
`or delete the key/value pair` in order to highlight what is shown in the example.

Fix one more example of removing data from the session in favour of using
`delete` since assigning to `nil` doesn't delete key from it.
This commit is contained in:
bogdanvlviv 2018-04-23 21:28:21 +03:00
parent 80cbf19453
commit d2fd01ec68
No known key found for this signature in database
GPG Key ID: E4ACD76A6DB6DFDD

@ -450,7 +450,7 @@ class LoginsController < ApplicationController
end
```
To remove something from the session, assign that key to be `nil`:
To remove something from the session, delete the key/value pair:
```ruby
class LoginsController < ApplicationController
@ -478,7 +478,7 @@ Let's use the act of logging out as an example. The controller can send a messag
```ruby
class LoginsController < ApplicationController
def destroy
session[:current_user_id] = nil
session.delete(:current_user_id)
flash[:notice] = "You have successfully logged out."
redirect_to root_url
end