Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JensForstmann committed Apr 3, 2024
1 parent 1f528d3 commit ca7379c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions backend/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1409,12 +1409,12 @@
"wonMapsTeamA": {
"type": "number",
"format": "double",
"description": "number of maps team a has won including a their advantage (if given)"
"description": "number of maps team a has won including its advantage (if given)"
},
"wonMapsTeamB": {
"type": "number",
"format": "double",
"description": "number of maps team b has won including a their advantage (if given)"
"description": "number of maps team b has won including its advantage (if given)"
},
"winnerTeam": {
"allOf": [
Expand Down
4 changes: 2 additions & 2 deletions common/types/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ export interface MapEndEvent extends BaseEvent {

export interface MatchEndEvent extends BaseEvent {
type: 'MATCH_END';
/** number of maps team a has won including a their advantage (if given) */
/** number of maps team a has won including its advantage (if given) */
wonMapsTeamA: number;
/** number of maps team b has won including a their advantage (if given) */
/** number of maps team b has won including its advantage (if given) */
wonMapsTeamB: number;
/** winner of the match or null if it's a draw */
winnerTeam: ITeam | null;
Expand Down

0 comments on commit ca7379c

Please sign in to comment.