diff --git a/app/views/request_for_comments/show.html.erb b/app/views/request_for_comments/show.html.erb
index 8ef7e16e..b8a143f9 100644
--- a/app/views/request_for_comments/show.html.erb
+++ b/app/views/request_for_comments/show.html.erb
@@ -1,6 +1,6 @@
- <% if (@request_for_comment.solved?) %>
+ <% if @request_for_comment.solved? %>
<% end %>
<%= link_to(@request_for_comment.exercise.title, [:implement, @request_for_comment.exercise]) %>
@@ -26,7 +26,7 @@
<% end %>
- <% if (policy(@request_for_comment).mark_as_solved? and not @request_for_comment.solved?) %>
+ <% if policy(@request_for_comment).mark_as_solved? and not @request_for_comment.solved? %>
<%= render('mark_as_solved') %>
<% end %>