Skip to content

Commit

Permalink
docs(modules/stats/router/controller): only one -> either
Browse files Browse the repository at this point in the history
  • Loading branch information
Mnigos committed Jul 3, 2024
1 parent 4daca6f commit 08af061
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/stats/router/stats-rigtch.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class StatsRigtchController {
"Getting user's top listened tracks via rigtch provider (cached).",
})
@ApiOkResponse({
description: `${MANY_SUCCESSFULLY_RETRIEVED('top track')} The response type will contain only one \`plays\` or \`playTime\` property depending on the \`measurement\` query parameter.`,
description: `${MANY_SUCCESSFULLY_RETRIEVED('top track')} The response type will contain either \`plays\` or \`playTime\` property depending on the \`measurement\` query parameter.`,
type: RigtchTopTracksDocument,
})
async getTopTracks(
Expand Down Expand Up @@ -74,7 +74,7 @@ export class StatsRigtchController {
"Getting user's top listened artists via rigtch provider (cached).",
})
@ApiOkResponse({
description: `${MANY_SUCCESSFULLY_RETRIEVED('top artist')} The response type will contain only one \`plays\` or \`playTime\` property depending on the \`measurement\` query parameter.`,
description: `${MANY_SUCCESSFULLY_RETRIEVED('top artist')} The response type will contain either \`plays\` or \`playTime\` property depending on the \`measurement\` query parameter.`,
type: RigtchTopArtistsDocument,
})
async getTopArtists(
Expand Down Expand Up @@ -105,7 +105,7 @@ export class StatsRigtchController {
"Getting user's top listened albums via rigtch provider (cached).",
})
@ApiOkResponse({
description: `${MANY_SUCCESSFULLY_RETRIEVED('top album')} The response type will contain only one \`plays\` or \`playTime\` property depending on the \`measurement\` query parameter.`,
description: `${MANY_SUCCESSFULLY_RETRIEVED('top album')} The response type will contain either \`plays\` or \`playTime\` property depending on the \`measurement\` query parameter.`,
type: RigtchTopAlbumsDocument,
})
async getTopAlbums(
Expand Down Expand Up @@ -136,7 +136,7 @@ export class StatsRigtchController {
"Getting user's top listened genres via rigtch provider (cached).",
})
@ApiOkResponse({
description: `${MANY_SUCCESSFULLY_RETRIEVED('top genre')} The response type will contain only one \`plays\` or \`playTime\` property depending on the \`measurement\` query parameter.`,
description: `${MANY_SUCCESSFULLY_RETRIEVED('top genre')} The response type will contain either \`plays\` or \`playTime\` property depending on the \`measurement\` query parameter.`,
type: RigtchTopGenresDocument,
})
async getTopGenres(
Expand Down

0 comments on commit 08af061

Please sign in to comment.