Skip to content

Commit

Permalink
fix: make consistency with the quotes
Browse files Browse the repository at this point in the history
Changes:
- trying to maintain the consistency of the single quotes
  and double quotes
  • Loading branch information
AnimeshKumar923 committed Jul 5, 2024
1 parent 3dcfe50 commit c788faf
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions spec/asyncapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1787,7 +1787,7 @@ components:
name:
type: string
AvroExample:
schemaFormat: application/vnd.apache.avro+json;version=1.9.0
schemaFormat: 'application/vnd.apache.avro+json;version=1.9.0'
schema:
$ref: './user-create.avsc'
servers:
Expand All @@ -1798,9 +1798,9 @@ components:
protocolVersion: 0-9-1
variables:
stage:
$ref: "#/components/serverVariables/stage"
$ref: '#/components/serverVariables/stage'
port:
$ref: "#/components/serverVariables/port"
$ref: '#/components/serverVariables/port'
serverVariables:
stage:
default: demo
Expand All @@ -1812,7 +1812,7 @@ components:
user/signedup:
subscribe:
message:
$ref: "#/components/messages/userSignUp"
$ref: '#/components/messages/userSignUp'
messages:
userSignUp:
summary: Action to sign a user up.
Expand All @@ -1832,9 +1832,9 @@ components:
type: object
properties:
user:
$ref: "#/components/schemas/userCreate"
$ref: '#/components/schemas/userCreate'
signup:
$ref: "#/components/schemas/signup"
$ref: '#/components/schemas/signup'
parameters:
userId:
description: Id of the user.
Expand Down

0 comments on commit c788faf

Please sign in to comment.