Skip to content

Commit

Permalink
Merge pull request #200 from pjanthony2001/119-help
Browse files Browse the repository at this point in the history
Fix help command bug
  • Loading branch information
Rishit02 authored Apr 15, 2024
2 parents a0a5d51 + 5037138 commit e49a653
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Superclass for keyword matching predicates.
*/
public abstract class KeywordMatcherPredicate implements Predicate<Person> {
private final List<String> keywords;
protected final List<String> keywords;

public KeywordMatcherPredicate(List<String> keywords) {
this.keywords = keywords;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/HelpWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
public class HelpWindow extends UiPart<Stage> {

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

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

0 comments on commit e49a653

Please sign in to comment.