diff --git a/lib/gitlab/markdown.rb b/lib/gitlab/markdown.rb
index 280f9f9730a..762eb372980 100644
--- a/lib/gitlab/markdown.rb
+++ b/lib/gitlab/markdown.rb
@@ -17,7 +17,7 @@ module Gitlab
# Examples
#
# >> gfm("Hey @david, can you fix this?")
- # => "Hey @david, can you fix this?"
+ # => "Hey @david, can you fix this?"
#
# >> gfm("Commit 35d5f7c closes #1234")
# => "Commit 35d5f7c closes #1234"
@@ -160,7 +160,7 @@ module Gitlab
def reference_user(identifier)
if member = @project.users_projects.joins(:user).where(users: { username: identifier }).first
- link_to("@#{identifier}", project_team_member_url(@project, member), html_options.merge(class: "gfm gfm-team_member #{html_options[:class]}")) if member
+ link_to("@#{identifier}", user_path(identifier), html_options.merge(class: "gfm gfm-team_member #{html_options[:class]}")) if member
end
end