From 16542ae6e3b3f19e904908b76f965ae2a460d33f Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Thu, 15 Oct 2020 18:42:00 +0200 Subject: [PATCH] UI improvements --- src/PhpDoc/ClassDoc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PhpDoc/ClassDoc.php b/src/PhpDoc/ClassDoc.php index af3b76e..d010e73 100644 --- a/src/PhpDoc/ClassDoc.php +++ b/src/PhpDoc/ClassDoc.php @@ -122,7 +122,7 @@ class ClassDoc extends GenericDoc foreach ($this->constants as $name => [, $description]) { $description = \trim($description); $description = \str_replace("\n", "\n ", $description); - $init .= "* {$this->className}::$name: $description\n"; + $init .= "* `{$this->className}::$name`: $description\n"; $init .= "\n"; } }