Skip to content

Commit 1e9397b

Browse files
committed
Removed CR in description
1 parent 5413143 commit 1e9397b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/Endpoint.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ public function renderDocParams(): string
440440

441441
$result = "\n /**\n";
442442
if (isset($this->content['documentation']['description'])) {
443-
$result .= " * {$this->content['documentation']['description']}\n";
443+
$result .= sprintf(" * %s\n", str_replace("\n", '', $this->content['documentation']['description']));
444444
$result .= " *\n";
445445
}
446446
$result .= $this->extractPartsDescription($space);

0 commit comments

Comments
 (0)