From c788fafee80c9a12e5c00d22991a91273189e2b7 Mon Sep 17 00:00:00 2001 From: Animesh Kumar Date: Fri, 5 Jul 2024 19:57:50 +0530 Subject: [PATCH] fix: make consistency with the quotes Changes: - trying to maintain the consistency of the single quotes and double quotes --- spec/asyncapi.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spec/asyncapi.md b/spec/asyncapi.md index d851bc42..4c5b6ddb 100644 --- a/spec/asyncapi.md +++ b/spec/asyncapi.md @@ -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: @@ -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 @@ -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. @@ -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.