Skip to content

Commit

Permalink
docs: JavaDoc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
RvandenHam committed Sep 6, 2023
1 parent 0a8692b commit 0f02f4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* JPMS module simpletimeapi.
* Describes API for ALDA Assignment SimpleTime.
*/
module simpletimeapi {
exports simpletimeapi;
}
2 changes: 1 addition & 1 deletion src/main/java/simpletimeapi/Duration.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public interface Duration extends Comparable<Duration> {
/**
* Equals method.
* Hint: generate equals method together with hashCode.
* @param other
* @param other object
* @return true if the value of this Duration is equal to the value of other Duration.
*/
@Override
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/simpletimeapi/Time.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ default int asMinutes() {
/**
* Equals method.
* Hint: generate equals method together with hashCode.
* @param other
* @param other object
* @return true if the value of this Time is equal to the value of other Time.
*/
@Override
Expand Down

0 comments on commit 0f02f4c

Please sign in to comment.