aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2018-01-19 17:49:21 +1030
committerGitHub <noreply@github.com>2018-01-19 17:49:21 +1030
commitacbcef6094d61eb8c4820295620d170743a4bd71 (patch)
treef0a6d4d0d145464307c2578a7fb43d799bb8d337 /actionpack
parent6559577d1d3fdb16187eda124bb71dd48d217c9d (diff)
parent5ac6ec54a673e493cddf6bf2eff5b98e52b3c268 (diff)
downloadrails-acbcef6094d61eb8c4820295620d170743a4bd71.tar.gz
rails-acbcef6094d61eb8c4820295620d170743a4bd71.tar.bz2
rails-acbcef6094d61eb8c4820295620d170743a4bd71.zip
Merge pull request #31732 from koic/enable_autocorrect_for_lint_end_alignment_cop
Enable autocorrect for `Lint/EndAlignment` cop
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_dispatch/http/url.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/http/url.rb b/actionpack/lib/action_dispatch/http/url.rb
index f0344fd927..35ba44005a 100644
--- a/actionpack/lib/action_dispatch/http/url.rb
+++ b/actionpack/lib/action_dispatch/http/url.rb
@@ -274,7 +274,7 @@ module ActionDispatch
def standard_port
case protocol
when "https://" then 443
- else 80
+ else 80
end
end