aboutsummaryrefslogtreecommitdiff
path: root/report/report.ms
diff options
context:
space:
mode:
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