From 5c51ccf185bb01a4ff83719befdc6e0f9d7a46a1 Mon Sep 17 00:00:00 2001 From: Jon Cave Date: Fri, 1 Feb 2013 18:08:30 +0000 Subject: [PATCH] Fix typo in "cotnent" --- src/phpDocumentor/Reflection/DocBlock/Tag/ReturnTag.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/ReturnTag.php b/src/phpDocumentor/Reflection/DocBlock/Tag/ReturnTag.php index 60fbd1d..44ca300 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/ReturnTag.php +++ b/src/phpDocumentor/Reflection/DocBlock/Tag/ReturnTag.php @@ -33,13 +33,13 @@ class ReturnTag extends Tag /** * {@inheritdoc} */ - public function getCotnent() + public function getContent() { if (null === $this->content) { $this->content = "{$this->type} {$this->description}"; } - return $this->cotnent; + return $this->content; } /**