Fix typo in "cotnent"

This commit is contained in:
Jon Cave
2013-02-01 18:08:30 +00:00
parent 13466286b0
commit 8f7ec6bd4a
@@ -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;
} }
/** /**