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 9c0a58b commit fa2a088Copy full SHA for fa2a088
src/schema-parser/schema-formatters.ts
@@ -110,15 +110,15 @@ export class SchemaFormatters {
110
if (!hasMultipleLines) return description;
111
112
if (inline) {
113
- return (
114
- lodash.chain(
115
- description.replace(/\//g, "")
+ return lodash
+ .chain(
+ description
116
+ .replace(/\//g, "")
117
.split(/\n/g)
- .map((part) => part.trim())
118
+ .map((part) => part.trim()),
119
)
120
.compact()
- .value()
121
- );
+ .value();
122
}
123
124
return description.replace(/\n$/g, "");
0 commit comments