Skip to content

Commit f75f848

Browse files
committed
Change response code quoting style from " to ' for consistency
1 parent 970566d commit f75f848

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

examples/v3.0/api-with-examples.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ paths:
88
operationId: listVersionsv2
99
summary: List API versions
1010
responses:
11-
"200":
11+
'200':
1212
description: |-
1313
200 response
1414
content:
@@ -41,7 +41,7 @@ paths:
4141
}
4242
]
4343
}
44-
"300":
44+
'300':
4545
description: |-
4646
300 response
4747
content:
@@ -80,7 +80,7 @@ paths:
8080
operationId: getVersionDetailsv2
8181
summary: Show API version details
8282
responses:
83-
"200":
83+
'200':
8484
description: |-
8585
200 response
8686
content:
@@ -125,7 +125,7 @@ paths:
125125
]
126126
}
127127
}
128-
"203":
128+
'203':
129129
description: |-
130130
203 response
131131
content:

examples/v3.0/uber.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ paths:
3232
tags:
3333
- Products
3434
responses:
35-
"200":
35+
'200':
3636
description: An array of products
3737
content:
3838
application/json:
@@ -80,7 +80,7 @@ paths:
8080
tags:
8181
- Estimates
8282
responses:
83-
"200":
83+
'200':
8484
description: An array of price estimates by product
8585
content:
8686
application/json:
@@ -127,7 +127,7 @@ paths:
127127
tags:
128128
- Estimates
129129
responses:
130-
"200":
130+
'200':
131131
description: An array of products
132132
content:
133133
application/json:
@@ -148,7 +148,7 @@ paths:
148148
tags:
149149
- User
150150
responses:
151-
"200":
151+
'200':
152152
description: Profile information for a user
153153
content:
154154
application/json:
@@ -180,7 +180,7 @@ paths:
180180
tags:
181181
- User
182182
responses:
183-
"200":
183+
'200':
184184
description: History information for the given user
185185
content:
186186
application/json:

0 commit comments

Comments
 (0)