Fix the incorrect rendering of the Patch attribute (#375)

This commit is contained in:
Patrick Stevens
2025-04-22 22:53:32 +01:00
committed by GitHub
parent 19761db983
commit e8571553c4
4 changed files with 46 additions and 46 deletions

View File

@@ -472,7 +472,7 @@ type HttpMethod =
| HttpMethod.Get -> "Get"
| HttpMethod.Post -> "Post"
| HttpMethod.Delete -> "Delete"
| HttpMethod.Patch -> "Post"
| HttpMethod.Patch -> "Patch"
| HttpMethod.Options -> "Options"
| HttpMethod.Head -> "Head"
| HttpMethod.Put -> "Put"