Update Markdown example to use username

Update the Markdown example in the Help pages to use username instead of user.
This commit is contained in:
Chris Waguespack 2013-01-23 09:58:38 -06:00
parent 65737bd5bd
commit 8ec36ca056

View file

@ -121,7 +121,7 @@
- if @project = current_user.authorized_projects.first
- if issue = @project.issues.first
%p For example in your #{link_to @project.name, project_path(@project)} project, writing:
%pre= "This is related to ##{issue.id}. @#{current_user.name} is working on solving it."
%pre= "This is related to ##{issue.id}. @#{current_user.username} is working on solving it."
%p becomes:
= markdown "This is related to ##{issue.id}. @#{current_user.name} is working on solving it."
= markdown "This is related to ##{issue.id}. @#{current_user.username} is working on solving it."
- @project = nil # Prevent this from bubbling up to page title