Skip to content

Commit ce57e54

Browse files
committed
Restored the greedy-ness inversion.
1 parent 37f5090 commit ce57e54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/phpDocumentor/Reflection/DocBlock/LongDescription.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function getParsedContents()
5858
{
5959
if (null === $this->parsedContents) {
6060
$this->parsedContents = preg_split(
61-
'/\{(\@.*)\}/uS', $this->contents,
61+
'/\{(\@.*?)\}/uS', $this->contents,
6262
null, PREG_SPLIT_DELIM_CAPTURE
6363
);
6464
for ($i=1, $l = count($this->parsedContents); $i<$l; $i += 2) {

0 commit comments

Comments
 (0)