Skip to content

Commit ab0f29c

Browse files
committed
escape char
1 parent 8e4a002 commit ab0f29c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/documentation/StructureExampleGenerator.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ private static void shape(Shape shape,
132132
if (isInput) {
133133
if (target.hasTrait(StreamingTrait.class)) {
134134
append(indentation, buffer,
135-
"\"MULTIPLE_TYPES_ACCEPTED\", // see \@smithy/types -> StreamingBlobPayloadInputTypes");
135+
"\"MULTIPLE_TYPES_ACCEPTED\", // see \\@smithy/types -> StreamingBlobPayloadInputTypes"
136+
);
136137
} else {
137138
append(indentation, buffer,
138139
"""
@@ -141,7 +142,7 @@ private static void shape(Shape shape,
141142
} else {
142143
if (target.hasTrait(StreamingTrait.class)) {
143144
append(indentation, buffer,
144-
"\"<SdkStream>\", // see \@smithy/types -> StreamingBlobPayloadOutputTypes");
145+
"\"<SdkStream>\", // see \\@smithy/types -> StreamingBlobPayloadOutputTypes");
145146
} else {
146147
append(indentation, buffer,
147148
"new Uint8Array(),");

0 commit comments

Comments
 (0)