mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-04-04 05:03:31 +03:00
Fixed broken description printing
This commit is contained in:
parent
03d7d1851c
commit
49ec89b28f
1 changed files with 1 additions and 1 deletions
|
@ -325,7 +325,7 @@ class Printer
|
|||
public function addDescription(\Closure $cb)
|
||||
{
|
||||
return function ($node) use ($cb) {
|
||||
return $this->join([$node->description, $cb($node)]);
|
||||
return $this->join([$node->description, $cb($node)], "\n");
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue