fix typo: swagger api operation title typo (#1870)

pull/1873/head
ikvarxt 2022-04-21 15:22:12 +08:00 committed by GitHub
parent 28810d103c
commit f40aed9a63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ public class PostController {
}
@DeleteMapping("{postId:\\d+}")
@ApiOperation("Deletes a photo permanently")
@ApiOperation("Deletes a post permanently")
public void deletePermanently(@PathVariable("postId") Integer postId) {
postService.removeById(postId);
}