Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal Pandya <kushal@gitlab.com>2016-12-23 14:50:31 +0300
committerKushal Pandya <kushal@gitlab.com>2016-12-31 09:18:42 +0300
commit97f3c8f3c9480f92375aa3fbb09138bdf43792c6 (patch)
tree890e45acba4bbf9d30458f270f5be38011281d30 /app/views/projects/forks/index.html.haml
parentdf4f896bcb86a53711725e8b6b62bfad894bc1e1 (diff)
HAMLLint: Fix `TrailingWhitespace` offences
Diffstat (limited to 'app/views/projects/forks/index.html.haml')
-rw-r--r--app/views/projects/forks/index.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/forks/index.html.haml b/app/views/projects/forks/index.html.haml
index 1f2b0a89afe..8657d73b881 100644
--- a/app/views/projects/forks/index.html.haml
+++ b/app/views/projects/forks/index.html.haml
@@ -1,7 +1,7 @@
.top-area
.nav-text
- full_count_title = "#{@public_forks_count} public and #{@private_forks_count} private"
- = "#{pluralize(@total_forks_count, 'fork')}: #{full_count_title}"
+ = "#{pluralize(@total_forks_count, 'fork')}: #{full_count_title}"
.nav-controls
= form_tag request.original_url, method: :get, class: 'project-filter-form', id: 'project-filter-form' do |f|