Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Incorrect spacing for Add Appointment command result #71

Merged
merged 10 commits into from
Oct 12, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class AddAppointmentCommand extends Command {
public static final String MESSAGE_USAGE =
"appt"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gycgabriel think can add a space here from #62 raised by @joshenx

Copy link
Author

@gycgabriel gycgabriel Oct 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for pointing out, new PR created.

+ COMMAND_WORD + ": Adds an appointment to the appointment book. " + "Parameters: " + PREFIX_NAME + "ID "
+ PREFIX_DATETIME + "DATETIME \n" + "Example: appt " + COMMAND_WORD + " " + PREFIX_NAME + "1"
+ PREFIX_DATETIME + "DATETIME \n" + "Example: appt " + COMMAND_WORD + " " + PREFIX_NAME + "1 "
+ PREFIX_DATETIME + "2021-12-31 1600";

public static final String MESSAGE_SUCCESS = "New appointment added: %1$s";
Expand Down