Skip to content

Commit

Permalink
Support multiline docs in js
Browse files Browse the repository at this point in the history
  • Loading branch information
sfodagain committed Apr 11, 2024
1 parent b16880b commit 4460593
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ export class Client extends EventEmitter {
<#if operationHasDocumentation>
<#assign operationDocumentation = context.getDocumentation(operation)>
*
* ${operationDocumentation}
<#list operationDocumentation?split("\n") as docLine>
* ${docLine}
</#list>
</#if>
*
* @param request data describing the ${operationName} operation to perform
Expand Down

0 comments on commit 4460593

Please sign in to comment.