Skip to content

Commit 659ff6d

Browse files
docs: update serialization interfaces documentation
1 parent e0c4d26 commit 659ff6d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

room_control_unit/src/app/model/baseserialization/Serializable.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
class Serializer;
1616

1717
/**
18-
* Interface that model a serializable object.
18+
* Interface that models a serializable object.
1919
*/
2020
class Serializable {
2121

2222
public:
2323

2424
/**
25-
* Function used to comunicate the type to the serializer.
25+
* Function used to accept a the serializer implementing the double dispatch.
2626
*/
2727
virtual String accept(Serializer *serializer) = 0;
2828

room_control_unit/src/app/model/baseserialization/Serializer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class RoomEntry;
2828

2929

3030
/**
31-
* Interface that model a visitor for events.
31+
* Interface that models a visitor for events.
3232
*/
3333
class Serializer {
3434

0 commit comments

Comments
 (0)