Skip to content

Commit ce35afc

Browse files
committed
Fix typo
1 parent c803921 commit ce35afc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

backend/swagger.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"advantage": {
2727
"type": "number",
2828
"format": "double",
29-
"description": "Advantage in map wins, useful for double elemination tournament finals."
29+
"description": "Advantage in map wins, useful for double elimination tournament finals."
3030
},
3131
"playerSteamIds64": {
3232
"items": {
@@ -759,7 +759,7 @@
759759
"advantage": {
760760
"type": "number",
761761
"format": "double",
762-
"description": "Advantage in map wins, useful for double elemination tournament finals."
762+
"description": "Advantage in map wins, useful for double elimination tournament finals."
763763
},
764764
"playerSteamIds64": {
765765
"items": {

common/types/team.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export interface ITeam {
99
passthrough?: string;
1010
/** Team name. */
1111
name: string;
12-
/** Advantage in map wins, useful for double elemination tournament finals. */
12+
/** Advantage in map wins, useful for double elimination tournament finals. */
1313
advantage: number;
1414
/** Steam ids of players in "Steam ID 64" format. Will be forced into this team.*/
1515
playerSteamIds64?: string[];
@@ -25,7 +25,7 @@ export interface ITeamCreateDto {
2525
* Will be present in every response/webhook.
2626
*/
2727
passthrough?: string;
28-
/** Advantage in map wins, useful for double elemination tournament finals. */
28+
/** Advantage in map wins, useful for double elimination tournament finals. */
2929
advantage?: number;
3030
/** Steam ids of players in "Steam ID 64" format. Will be forced into this team.*/
3131
playerSteamIds64?: string[];

0 commit comments

Comments
 (0)