euromark 11 years ago
parent
commit
0f40f5e29b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/View/RssView.php

+ 2 - 2
src/View/RssView.php

@@ -136,11 +136,11 @@ class RssView extends View {
 	 *
 	 * @param int|string|DateTime $time
 	 * @return string An RSS-formatted timestamp
-	 * @see Time::toRSSString
+	 * @see Time::toRssString()
 	 */
 	public function time($time) {
 		$time = new Time($time);
-		return $time->toRSSString();
+		return $time->toRssString();
 	}
 
 	/**