From 4271a5e22309a448aced79310359471b57472aa1 Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Sat, 17 Jan 2015 02:07:11 -0800 Subject: [PATCH] fix for followers pluralization --- views/site.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/site.erb b/views/site.erb index 560eeb5e..1a167b93 100644 --- a/views/site.erb +++ b/views/site.erb @@ -24,7 +24,7 @@
<%= site.views.format_large_number %> views
<% follows_count = site.follows_dataset.count %> -
<%= follows_count.format_large_number %> follower<% follows_count == 0 ? '' : 's' %>
+
<%= follows_count.format_large_number %> follower<%= follows_count == 0 ? '' : 's' %>