Skip to content

Commit

Permalink
fix: update JavaDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Bonajo committed Sep 14, 2023
1 parent 4b95c8e commit c98a39d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/appointmentplanner/api/Priority.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
package appointmentplanner.api;

/**
* Priority of appointments.
* Priority of appointments (not used as part of scheduling).
*
* @author Pieter van den Hombergh {@code [email protected]}
*/
public enum Priority {
/**
* Low priority
* Low priority.
*/
LOW,
/**
* Medium priority
* Medium priority.
*/
MEDIUM,
/**
* High priority
* High priority.
*/
HIGH
}

0 comments on commit c98a39d

Please sign in to comment.