From d8cc1b72b3cca6dbfd9b7efda4c7b5e8ca421bb6 Mon Sep 17 00:00:00 2001 From: skotambkar Date: Mon, 5 Oct 2020 10:27:27 -0700 Subject: [PATCH] feedback on doc.go formatting --- service/route53/internal/customizations/doc.go | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/service/route53/internal/customizations/doc.go b/service/route53/internal/customizations/doc.go index 30b551154bc..46b9bcd4dfb 100644 --- a/service/route53/internal/customizations/doc.go +++ b/service/route53/internal/customizations/doc.go @@ -1,6 +1,7 @@ // Package customizations provides customizations for the Amazon Route53 API client. // // This package provides support for following customizations +// // Process Response Middleware: used for custom error deserializing // // @@ -11,16 +12,17 @@ // ChangeResourceRecordSets operation of Route53. // // Here's a sample error response: -// -// -// -// Tried to create resource record set duplicate.example.com. type A, but it already exists -// -// +// +// +// +// +// Tried to create resource record set duplicate.example.com. type A, but it already exists +// +// // // // The processResponse middleware customizations enables SDK to check for an error -// response starting with `InvalidChangeBatch` tag prior to deserialization. +// response starting with "InvalidChangeBatch" tag prior to deserialization. // // As this check in error response needs to be performed earlier than response // deserialization. Since the behavior of Deserialization is in @@ -29,7 +31,7 @@ // // Middleware layering: // -// HTTP Response -> process response error -> deserialize +// HTTP Response -> process response error -> deserialize // // // In case the returned error response has `InvalidChangeBatch` format, the error is