diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-03-06 00:24:30 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2017-03-06 00:24:30 +0900 |
commit | 660e189c35ddd31fd131c2a360687f39a4ea8081 (patch) | |
tree | 2833dc40702fcf921edc77033fdc154a489dfa7a /actionpack/lib/action_dispatch/http | |
parent | 45b64bb6a837a6405567c94d2b719e232cd56e86 (diff) | |
download | rails-660e189c35ddd31fd131c2a360687f39a4ea8081.tar.gz rails-660e189c35ddd31fd131c2a360687f39a4ea8081.tar.bz2 rails-660e189c35ddd31fd131c2a360687f39a4ea8081.zip |
Fix CI failure due to contain <U+2028>
```diff
diff --git a/actionpack/lib/action_controller/metal/redirecting.rb b/actionpack/lib/action_controller/metal/redirecting.rb
index a3159c29dd..1836a07d4e 100644
--- a/actionpack/lib/action_controller/metal/redirecting.rb
+++ b/actionpack/lib/action_controller/metal/redirecting.rb
@@ -50,8 +50,8 @@ module Redirecting
# redirect_to post_url(@post), status: 301, flash: { updated_post_id: @post.id }
# redirect_to({ action: 'atom' }, alert: "Something serious happened")
#
- # Statements after redirect_to in our controller get executed, so redirect_to doesn't stop the execution of the function.
- <U+2028># To terminate the execution of the function immediately after the redirect_to, use return.
+ # Statements after +redirect_to+ in our controller get executed, so +redirect_to+ doesn't stop the execution of the function.
+ # To terminate the execution of the function immediately after the +redirect_to+, use return.
# redirect_to post_url(@post) and return
def redirect_to(options = {}, response_status = {})
raise ActionControllerError.new("Cannot redirect to nil!") unless options
```
https://travis-ci.org/rails/rails/jobs/207908041#L549
Diffstat (limited to 'actionpack/lib/action_dispatch/http')
0 files changed, 0 insertions, 0 deletions