1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

fix typos

This commit is contained in:
Michael Telatynski
2021-05-13 14:14:01 +01:00
parent 76afc1100a
commit a41d76b588
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ interface IProps {
content: string;
// The count of votes for this key
count: number;
// A Set of Martix reaction events for this key
// A Set of Matrix reaction events for this key
reactionEvents: Set<MatrixEvent>;
// A possible Matrix event if the current user has voted for this type
myReactionEvent?: MatrixEvent;

View File

@@ -29,7 +29,7 @@ interface IProps {
mxEvent: MatrixEvent;
// The reaction content / key / emoji
content: string;
// A Set of Martix reaction events for this key
// A Set of Matrix reaction events for this key
reactionEvents: Set<MatrixEvent>;
visible: boolean;
}