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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-07-10 14:13:02 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-07-10 14:13:02 +0300
commitfdbaffdc08219e7bcd2dade5b70f90cd546841e2 (patch)
tree65aae97ccb59021bd84ee2d5700841ffd6f5afab /app/helpers
parentd1261d88f191b91850815b66f7cdb7914968fc5e (diff)
parent360ee25ddbaff3d22fe2408e1573b0d3a29e3dbe (diff)
Merge branch 'comment-box-changes' of gitlab.com:gitlab-org/gitlab-ce
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/gitlab_markdown_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/gitlab_markdown_helper.rb b/app/helpers/gitlab_markdown_helper.rb
index a801d3b10aa..eb3f72a307d 100644
--- a/app/helpers/gitlab_markdown_helper.rb
+++ b/app/helpers/gitlab_markdown_helper.rb
@@ -118,7 +118,7 @@ module GitlabMarkdownHelper
# Returns a random markdown tip for use as a textarea placeholder
def random_markdown_tip
- "Tip: #{MARKDOWN_TIPS.sample}"
+ MARKDOWN_TIPS.sample
end
private