Browse Source

Merge pull request #4337 from alecho/patch-1

removes confusing language
Mark Story 11 years ago
parent
commit
53596d4340
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/View/CellTrait.php

+ 1 - 1
src/View/CellTrait.php

@@ -45,7 +45,7 @@ trait CellTrait {
  *
  * Cells are not rendered until they are echoed.
  *
- * @param string $cell You must indicate both cell name, and optionally a cell action. e.g.: `TagCloud::smallList`
+ * @param string $cell You must indicate cell name, and optionally a cell action. e.g.: `TagCloud::smallList`
  * will invoke `View\Cell\TagCloudCell::smallList()`, `display` action will be invoked by default when none is provided.
  * @param array $data Additional arguments for cell method. e.g.:
  *    `cell('TagCloud::smallList', ['a1' => 'v1', 'a2' => 'v2'])` maps to `View\Cell\TagCloud::smallList(v1, v2)`