Skip to content

Commit 556183c

Browse files
Address Style/HashSyntax issues
1 parent fc5f836 commit 556183c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/views/subscriptions/index.html.erb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
<% end %>
6464
</dt>
6565
<dd>
66-
<%= form_for [current_user, subscription], :html => { :method => :delete } do |f| %>
66+
<%= form_for [current_user, subscription], html: { method: :delete } do |f| %>
6767
<%= f.submit t(".button_html", name: subscription.name) %>
6868
<% end %>
6969
</dd>
@@ -75,7 +75,7 @@
7575
<h6 class="landmark heading"><%= t(".summary") %></h6>
7676
</dt>
7777
<dd>
78-
<%= form_for [current_user, subscription], :html => { :method => :delete } do |f| %>
78+
<%= form_for [current_user, subscription], html: { method: :delete } do |f| %>
7979
<%= f.submit t(".button_html", name: t(".mystery_work")) %>
8080
<% end %>
8181
</dd>
@@ -84,7 +84,7 @@
8484
<%= subscription.name %>
8585
</dt>
8686
<dd>
87-
<%= form_for [current_user, subscription], :html => { :method => :delete } do |f| %>
87+
<%= form_for [current_user, subscription], html: { method: :delete } do |f| %>
8888
<%= f.submit t(".button_html", name: subscription.name) %>
8989
<% end %>
9090
</dd>

0 commit comments

Comments
 (0)