aboutsummaryrefslogtreecommitdiff
path: root/report/report.ms
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2020-12-29 03:25:46 +0100
committerClyhtsuriva <aimeric@adjutor.xyz>2020-12-29 03:25:46 +0100
commit3690d6bf3f0da7ab0d60f4502b008c84f4426486 (patch)
tree1698b6922b7de8a54f4b36e54412b84b11fc3dd3 /report/report.ms
parent3727ff6c95b5d4a0b111f08e50f99ed8e3751c87 (diff)
report update
Diffstat (limited to 'report/report.ms')
-rw-r--r--report/report.ms4
1 files changed, 2 insertions, 2 deletions
diff --git a/report/report.ms b/report/report.ms
index 2f8e637..a399291 100644
--- a/report/report.ms
+++ b/report/report.ms
@@ -80,7 +80,7 @@ Those are instanciated into objects a lot since they're the base of an app manag
Song and AudioBook both extend the MusicalElement which is an abstraction class. But Album and Playlist are standalone, they're just implementing Serializable like MusicalElement.
.PP
-The other files contains the enums. There is Genre for Song but also Category and Language used as attributes for AudioBook.
+The other files contain the enums. There is Genre for Song but also Category and Language used as attributes for AudioBook.
.bp
@@ -90,7 +90,7 @@ Abstraction and Interface
.PP
The abstract class is MusicalElement which is instanciated by Song and AudioBook.
.PP
-The interface used in this project is the Serializable one. It is used by MusicalElement (therefore, Song and AudioBook), Album and Playlist. It's used to store the objects created into files. One for each types (songs, audiobooks, albums and playlists).
+The interface used in this project is the Serializable one. It is used by MusicalElement (therefore, Song and AudioBook), Album and Playlist. It's used to store the created objects into files. One for each types (songs, audiobooks, albums and playlists).
.NH 2
Exceptions