Skip to content

Commit 36edf51

Browse files
committed
remove trailing spaces
1 parent 1780d84 commit 36edf51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/CommandGenerator.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ private void generateClientCommand() {
124124

125125
String name = symbol.getName();
126126
writer.writeShapeDocs(
127-
operation,
127+
operation,
128128
shapeDoc -> shapeDoc + "\n"
129129
+ getCommandExample(serviceSymbol.getName(), configType, name, inputType.getName(), outputType.getName())
130130
+ "\n"
@@ -186,10 +186,10 @@ private String getThrownExceptions() {
186186
ErrorTrait errorTrait = errorShape.getTrait(ErrorTrait.class).get();
187187

188188
if (doc.isPresent()) {
189-
buffer.append(String.format("@throws {@link %s} (%s fault) %s\n",
189+
buffer.append(String.format("@throws {@link %s} (%s fault) %s\n",
190190
error.getName(), errorTrait.getValue(), doc.get().getValue()));
191191
} else {
192-
buffer.append(String.format("@throws {@link %s} (%s fault)\n",
192+
buffer.append(String.format("@throws {@link %s} (%s fault)\n",
193193
error.getName(), errorTrait.getValue()));
194194
}
195195
}

0 commit comments

Comments
 (0)