diff --git a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/RestJsonProtocolGenerator.java b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/RestJsonProtocolGenerator.java index ce8bb36f7e8..f999417efae 100644 --- a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/RestJsonProtocolGenerator.java +++ b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/RestJsonProtocolGenerator.java @@ -64,7 +64,7 @@ * It handles reading and writing from document bodies, including generating any * functions needed for performing serde. * - * @see Smithy HTTP protocol bindings. + * @see Smithy HTTP protocol bindings. */ abstract class RestJsonProtocolGenerator extends HttpBindingProtocolGenerator { private final Set generatedDocumentBodyShapeSerializers = new HashSet<>(); diff --git a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/XmlProtocolUtils.java b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/XmlProtocolUtils.java index cd8ae1901fd..dca61e11c32 100644 --- a/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/XmlProtocolUtils.java +++ b/codegen/smithy-aws-go-codegen/src/main/java/software/amazon/smithy/aws/go/codegen/XmlProtocolUtils.java @@ -349,7 +349,7 @@ public static void handleDecodeError(GoWriter writer, String returnExtras) { * This method is used indirectly by generateErrorDispatcher to generate operation specific error handling functions * * @param context the generation context - * @see Rest-XML operation error serialization. + * @see Rest-XML operation error serialization. */ public static void writeXmlErrorMessageCodeDeserializer(ProtocolGenerator.GenerationContext context) { GoWriter writer = context.getWriter().get();