Skip to content

Commit

Permalink
Added new line to make it more readable
Browse files Browse the repository at this point in the history
* This shows the reader there is a method: and 
  data: parameters
  • Loading branch information
jasonnoble committed Nov 25, 2012
1 parent a22fc4a commit 3e8c4bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion guides/source/getting_started.md
Expand Up @@ -1123,7 +1123,8 @@ together.
<td><%= post.text %></td>
<td><%= link_to 'Show', action: :show, id: post.id %></td>
<td><%= link_to 'Edit', action: :edit, id: post.id %></td>
<td><%= link_to 'Destroy', { action: :destroy, id: post.id }, method: :delete, data: { confirm: 'Are you sure?' } %></td>
<td><%= link_to 'Destroy', { action: :destroy, id: post.id },
method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</table>
Expand Down

0 comments on commit 3e8c4bc

Please sign in to comment.