Skip to content

Commit

Permalink
Merge pull request AY2425S1-CS2103-F09-1#103 from wuzengfu/edit-comma…
Browse files Browse the repository at this point in the history
…nd-prefix

Remove white space after command prefix
  • Loading branch information
wuzengfu authored Oct 17, 2024
2 parents 3953662 + 33e5cd6 commit 9111a1b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/seedu/address/logic/parser/CliSyntax.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
public class CliSyntax {

/* Prefix definitions */
public static final Prefix PREFIX_NAME = new Prefix("n/ ");
public static final Prefix PREFIX_TELEGRAM_HANDLE = new Prefix("th/ ");
public static final Prefix PREFIX_EMAIL = new Prefix("e/ ");
public static final Prefix PREFIX_STUDENT_STATUS = new Prefix("s/ ");
public static final Prefix PREFIX_ROLE = new Prefix("r/ ");
public static final Prefix PREFIX_NICKNAME = new Prefix("nn/ ");
public static final Prefix PREFIX_NAME = new Prefix("n/");
public static final Prefix PREFIX_TELEGRAM_HANDLE = new Prefix("th/");
public static final Prefix PREFIX_EMAIL = new Prefix("e/");
public static final Prefix PREFIX_STUDENT_STATUS = new Prefix("s/");
public static final Prefix PREFIX_ROLE = new Prefix("r/");
public static final Prefix PREFIX_NICKNAME = new Prefix("nn/");
}

0 comments on commit 9111a1b

Please sign in to comment.