From e8ad3f643d6466b4731a7499b0cd375e47f334a6 Mon Sep 17 00:00:00 2001 From: Sal-N Date: Sun, 5 May 2013 01:26:34 +0300 Subject: [PATCH] Less awkward English --- app/views/wiki_pages/show.html.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/wiki_pages/show.html.erb b/app/views/wiki_pages/show.html.erb index e68a96c90..0e7217d9f 100644 --- a/app/views/wiki_pages/show.html.erb +++ b/app/views/wiki_pages/show.html.erb @@ -24,11 +24,11 @@ <% end %> <% if @wiki_page.presenter.antecedent_tag_implications.any? %> -

This tag has been implicated to <%= raw @wiki_page.presenter.antecedent_tag_implications.map {|x| link_to(x.consequent_name, show_or_new_wiki_pages_path(:title => x.consequent_name))}.join(", ") %>.

+

This tag implicates <%= raw @wiki_page.presenter.antecedent_tag_implications.map {|x| link_to(x.consequent_name, show_or_new_wiki_pages_path(:title => x.consequent_name))}.join(", ") %>.

<% end %> <% if @wiki_page.presenter.consequent_tag_implications.any? %> -

The following tags are implicated to this tag: <%= raw @wiki_page.presenter.consequent_tag_implications.map {|x| link_to(x.antecedent_name, show_or_new_wiki_pages_path(:title => x.antecedent_name))}.join(", ") %>.

+

The following tags implicate this tag: <%= raw @wiki_page.presenter.consequent_tag_implications.map {|x| link_to(x.antecedent_name, show_or_new_wiki_pages_path(:title => x.antecedent_name))}.join(", ") %>.

<% end %>