We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1f9326 commit ec2be0cCopy full SHA for ec2be0c
smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/CommandGenerator.java
@@ -252,7 +252,7 @@ private String getCuratedExamples(String commandName) {
252
.append("\n")
253
.append(String.format("@example %s%n", example.getTitle()))
254
.append("```javascript\n")
255
- .append(String.format("/* %s */%n", example.getDocumentation().orElse("")))
+ .append(String.format("// %s%n", example.getDocumentation().orElse("")))
256
.append("""
257
const input = %s;
258
const command = new %s(input);
0 commit comments