Skip to content

Commit

Permalink
explain adding team members needs to include yourself and no @ sign
Browse files Browse the repository at this point in the history
  • Loading branch information
Devin Reams committed Mar 10, 2017
1 parent a29e4e7 commit aae4320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jarvis.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class Jarvis {
var github = this.github;
var me = this;

convo.ask('Who would you like to add to the team? (Comma-separated list of GitHub usernames)', function(response, convo){
convo.ask('Who would you like to add to your team? (this should be a comma-separated list of all your team member\'s GitHub usernames, yourself included, and please do not include the @-sign)', function(response, convo){

var teamMembers = response.text.split(/[\s,]+/);
var printableTeamMembers = teamMembers.slice(0, teamMembers.length-1).join(', ') + ' and ' + teamMembers[teamMembers.length-1];
Expand Down

0 comments on commit aae4320

Please sign in to comment.