Skip to content

Commit

Permalink
Fix command format
Browse files Browse the repository at this point in the history
  • Loading branch information
Originalidk committed Nov 14, 2023
1 parent 1366a2a commit 9d2f0f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1463,7 +1463,7 @@ Format: `createconsult d/DATE tt/TIME [n/NAME]…`
#### 📝️Adding Students to a Consultation: `addtoconsult`
You can add your student(s) into a consultation slot if you need to track students in your consultations.

Format: `addtoconsult CONSULTATION_INDEX [n/NAME]`
Format: `addtoconsult CONSULTATION_INDEX n/NAME…`

| **Parameter** | **Description** |
|:------------------:|:--------------------------------------------------------------------:|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class AddToConsultCommand extends Command {

public static final String MESSAGE_USAGE = COMMAND_WORD + ": Adds a student to a consultation at INDEX."
+ "Parameters: CONSULTATION_INDEX (must be a positive integer) "
+ "[" + PREFIX_NAME + "NAME]...\n"
+ PREFIX_NAME + "NAME...\n"
+ "Example: " + COMMAND_WORD + " "
+ PREFIX_NAME + "John Doe ";

Expand Down

0 comments on commit 9d2f0f8

Please sign in to comment.