Skip to content

Commit

Permalink
馃悰 Fix operation IDs
Browse files Browse the repository at this point in the history
Fixes typos in operation IDs.
  • Loading branch information
connorjs committed Sep 10, 2023
1 parent a1236f0 commit 32dc49a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/people.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace people {
*
* @param search Case-insensitive partial match on the `name` field.
*/
@OpenAPI.operationId("ListPerson")
@OpenAPI.operationId("ListPeople")
op list(@query search: string): Person[];

/**
Expand Down
2 changes: 1 addition & 1 deletion src/planets.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace planets {
*
* @param search Case-insensitive partial match on the `name` field.
*/
@OpenAPI.operationId("ListPlanet")
@OpenAPI.operationId("ListPlanets")
op list(@query search: string): Planet[];

/**
Expand Down

0 comments on commit 32dc49a

Please sign in to comment.