Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions markdown/docs/migration/migrating-to-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,10 @@ components:
type: oauth2
flows:
implicit:
authorizationUrl: https://example.com/api/oauth/dialog
authorizationUrl: 'https://example.com/api/oauth/dialog'
availableScopes:
write:pets: modify pets in your account
read:pets: read your pets
'write:pets': modify pets in your account
'read:pets': read your pets
scopes:
- 'write:pets'
```
Expand All @@ -295,10 +295,10 @@ components:
type: oauth2
flows:
implicit:
authorizationUrl: https://example.com/api/oauth/dialog
authorizationUrl: 'https://example.com/api/oauth/dialog'
availableScopes:
write:pets: modify pets in your account
read:pets: read your pets
'write:pets': modify pets in your account
'read:pets': read your pets
scopes:
- "write:pets"
```
Expand Down