Skip to content

Commit

Permalink
Better wording for current
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacs committed Oct 23, 2010
1 parent 7938e64 commit b53fe26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/multiuser.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@ function prompts (cb) {
(prompt, ["\nWhere should node modules be stored?\n" (prompt, ["\nWhere should node modules be stored?\n"
+"This should be in your NODE_PATH.\n" +"This should be in your NODE_PATH.\n"
+"current: "+get("root")+"\n" +"current: "+get("root")+"\n"
+"a path, C for current, or Enter for default> " +"a path, 'c' for current, or Enter for default> "
, "~/.node_libraries" , "~/.node_libraries"
], h("root", "~/.node_libraries")) ], h("root", "~/.node_libraries"))
(prompt, ["\nWhere should man pages be stored?\n" (prompt, ["\nWhere should man pages be stored?\n"
+"This should be in your MANPATH.\n" +"This should be in your MANPATH.\n"
+"current: "+get("manroot")+"\n" +"current: "+get("manroot")+"\n"
+"a path, C for current, or Enter for default> " +"a path, 'c' for current, or Enter for default> "
, "~/local/share/man" , "~/local/share/man"
], h("manroot", "~/local/share/man")) ], h("manroot", "~/local/share/man"))
(prompt, ["\nWhere should executables be stored?\n" (prompt, ["\nWhere should executables be stored?\n"
+"This should be in your PATH.\n" +"This should be in your PATH.\n"
+"current: "+get("binroot")+"\n" +"current: "+get("binroot")+"\n"
+"a path, C for current, or Enter for default> " +"a path, 'c' for current, or Enter for default> "
,"~/bin" ,"~/bin"
], h("binroot", "~/bin")) ], h("binroot", "~/bin"))
() ()
Expand Down

0 comments on commit b53fe26

Please sign in to comment.