Skip to content

Commit

Permalink
fix(migrating-to-v3): fix mark down to ensure correct highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
sergejomon authored and GuillaumeGayot committed Oct 24, 2024
1 parent 4f813d0 commit c17c142
Showing 1 changed file with 6 additions and 6 deletions.
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 @@ -265,10 +265,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 @@ -291,10 +291,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

0 comments on commit c17c142

Please sign in to comment.