Merge pull request #17 from joncave/cotnent-typo

Fix typo in "cotnent"
This commit is contained in:
Mike van Riel
2013-02-01 10:47:35 -08:00
@@ -33,13 +33,13 @@ class ReturnTag extends Tag
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function getCotnent() public function getContent()
{ {
if (null === $this->content) { if (null === $this->content) {
$this->content = "{$this->type} {$this->description}"; $this->content = "{$this->type} {$this->description}";
} }
return $this->cotnent; return $this->content;
} }
/** /**