We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffd87c8 commit 8f68f7eCopy full SHA for 8f68f7e
docs/examples.md
@@ -21,11 +21,11 @@ dotnet run -- ../pet-store/openapi.json ../pet-store/PetStore-Client
21
client←⎕NEW Client (baseURL:'https://petstore3.swagger.io/api/v3')
22
23
⍝ Find available pets
24
-pets←api.pet.findPetsByStatus (client:client ⋄ status:'available')
+pets←api.pet.findPetsByStatus.sync (client:client ⋄ status:'available')
25
⎕←'Available pets: ',≢pets
26
27
⍝ Get a specific pet
28
-pet←api.pet.getPetById (client:client ⋄ petId:1)
+pet←api.pet.getPetById.sync (client:client ⋄ petId:1)
29
⎕←'Pet name: ',pet.name
30
31
⍝ Create a new pet
0 commit comments