Skip to content

Commit

Permalink
Update to Comments
Browse files Browse the repository at this point in the history
Updated comments to follow Coding standards to ensure it is easy to read for others.
  • Loading branch information
Darkarche3 committed Feb 9, 2024
1 parent 5a495a2 commit 51a023b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/area/DukeException.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package area;
/**
* checks for exception for each command.
* Checks for exception for each command.
*/
public class DukeException extends Exception {

Expand Down
3 changes: 3 additions & 0 deletions src/main/java/area/Todo.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package area;

/**
* Todo class is child of Task class. It is used to create objects that represent generic tasks that users want to keep track of.
*/
public class Todo extends Task {

/**
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/area/Ui.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
package area;
import java.util.ArrayList;

/**
* Returns responses to user instructions in the form of printed statements. It starts with greeting the user and ends with the command bye. If any task is added or modified,
* Ui will print a statement accordingly to inform user that user's instructions have been followed.
*/
public class Ui {

public Ui() {
Expand Down

0 comments on commit 51a023b

Please sign in to comment.