File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/seedu/address/logic/commands Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 19
19
public class MarkAttCommand extends Command {
20
20
21
21
public static final String COMMAND_WORD = "markatt" ;
22
- public static final String MESSAGE_SUCCESS = "Attendance marked : \n %1$s - present" ;
23
- public static final String MESSAGE_ALL_SUCCESS = "Attendance of all students marked!" ;
22
+ public static final String MESSAGE_SUCCESS = "%s : \n Attendance - present" ;
23
+ public static final String MESSAGE_ALL_SUCCESS = "Attendance of all students marked present !" ;
24
24
25
25
public static final String MESSAGE_USAGE = COMMAND_WORD
26
26
+ ": Marks the attendance of all students / a student in a class. \n "
Original file line number Diff line number Diff line change 14
14
public class UnmarkAttCommand extends Command {
15
15
16
16
public static final String COMMAND_WORD = "unmarkatt" ;
17
- public static final String MESSAGE_SUCCESS = "Attendance unmarked : \n %1$s - absent" ;
17
+ public static final String MESSAGE_SUCCESS = "%s : \n Attendance - absent" ;
18
18
19
19
public static final String MESSAGE_USAGE = COMMAND_WORD
20
20
+ ": Unmarks the attendance of a student in a class. \n "
You can’t perform that action at this time.
0 commit comments