Skip to content

Commit

Permalink
escape char
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe committed Mar 8, 2024
1 parent 8e4a002 commit ab0f29c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ private static void shape(Shape shape,
if (isInput) {
if (target.hasTrait(StreamingTrait.class)) {
append(indentation, buffer,
"\"MULTIPLE_TYPES_ACCEPTED\", // see \@smithy/types -> StreamingBlobPayloadInputTypes");
"\"MULTIPLE_TYPES_ACCEPTED\", // see \\@smithy/types -> StreamingBlobPayloadInputTypes"
);
} else {
append(indentation, buffer,
"""
Expand All @@ -141,7 +142,7 @@ private static void shape(Shape shape,
} else {
if (target.hasTrait(StreamingTrait.class)) {
append(indentation, buffer,
"\"<SdkStream>\", // see \@smithy/types -> StreamingBlobPayloadOutputTypes");
"\"<SdkStream>\", // see \\@smithy/types -> StreamingBlobPayloadOutputTypes");
} else {
append(indentation, buffer,
"new Uint8Array(),");
Expand Down

0 comments on commit ab0f29c

Please sign in to comment.