Skip to content

Commit 0e643b8

Browse files
committed
remove trailing spaces
1 parent 1780d84 commit 0e643b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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)