Skip to content

Commit

Permalink
Update user guide link and help message
Browse files Browse the repository at this point in the history
  • Loading branch information
rithanisk committed Oct 15, 2024
1 parent 849fc23 commit 175e2ae
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/main/java/seedu/address/ui/HelpWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@
*/
public class HelpWindow extends UiPart<Stage> {

public static final String USERGUIDE_URL = "https://se-education.org/addressbook-level3/UserGuide.html";
public static final String HELP_MESSAGE = "Refer to the user guide: " + USERGUIDE_URL;
public static final String USERGUIDE_URL = "https://ay2425s1-cs2103t-t09-2.github.io/tp/UserGuide.html";

public static final String HELP_MESSAGE_COMMANDS = "Below are the list of commands TalentSG supports:\n\n"
+ "Add | Edit | List | Delete | View | Find | Filter | Clear "
+ " | Help | Exit\n\n";
public static final String HELP_MESSAGE = HELP_MESSAGE_COMMANDS + "For additional information, " +
"please refer to the user guide:\n " + USERGUIDE_URL;

private static final Logger logger = LogsCenter.getLogger(HelpWindow.class);
private static final String FXML = "HelpWindow.fxml";
Expand Down

0 comments on commit 175e2ae

Please sign in to comment.