Fixed typo
All checks were successful
continuous-integration/drone/pr Build is passing

ref #49
This commit is contained in:
2020-12-22 20:19:28 +01:00
parent 1f061c7ea6
commit c34bde7d4f
7 changed files with 7 additions and 7 deletions

View File

@@ -69,7 +69,7 @@ export class RunnerController {
@ResponseSchema(ResponseRunner)
@ResponseSchema(RunnerNotFoundError, { statusCode: 404 })
@ResponseSchema(RunnerIdsNotMatchingError, { statusCode: 406 })
@OpenAPI({ description: "Update the runner whose id you provided. <br> Please remember that id's can't be changed." })
@OpenAPI({ description: "Update the runner whose id you provided. <br> Please remember that ids can't be changed." })
async put(@Param('id') id: number, @Body({ validate: true }) runner: UpdateRunner) {
let oldRunner = await this.runnerRepository.findOne({ id: id }, { relations: ['group'] });