Commit 589754e5ad6dc0976ef0ae328b673241860b6d13
1 parent
46dcb7fe
Exists in
master
and in
1 other branch
Removed typo in comment deletion confirm dialog
There was a "you" missing in the sentence.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/views/problems/show.html.haml
... | ... | @@ -37,7 +37,7 @@ |
37 | 37 | - else |
38 | 38 | %span.comment-info |
39 | 39 | = time_ago_in_words(comment.created_at, true) << " ago by [Unknown User]" |
40 | - %span.delete= link_to '✘'.html_safe, [@app, @problem, comment], :method => :delete, :data => { :confirm => "Are sure you don't need this comment?" }, :class => "destroy-comment" | |
40 | + %span.delete= link_to '✘'.html_safe, [@app, @problem, comment], :method => :delete, :data => { :confirm => "Are you sure you don't need this comment?" }, :class => "destroy-comment" | |
41 | 41 | %tr |
42 | 42 | %td= simple_format comment.body |
43 | 43 | - if @problem.comments_allowed? | ... | ... |