mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-28 21:39:47 +08:00
fixed a bunch of typos and errors
This commit is contained in:
@@ -50,7 +50,6 @@ abstract class BaseRenderer extends Component
|
||||
* @param array $files list of markdown files to render
|
||||
* @param Context $context the api documentation context to render.
|
||||
* @param Controller $controller the apidoc controller instance. Can be used to control output.
|
||||
* @return
|
||||
*/
|
||||
public abstract function renderMarkdownFiles($controller);
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ ArrayHelper::multisort($constants, 'name');
|
||||
<tr<?= $constant->definedBy != $type->name ? ' class="inherited"' : '' ?> id="<?= $constant->name ?>">
|
||||
<td><?= $constant->name ?><a name="<?= $constant->name ?>-detail"></a></td>
|
||||
<td><?= $constant->value ?></td>
|
||||
<td><?= APiMarkdown::process($constant->shortDescription . "\n" . $constant->description, $constant->definedBy, true) ?></td>
|
||||
<td><?= ApiMarkdown::process($constant->shortDescription . "\n" . $constant->description, $constant->definedBy, true) ?></td>
|
||||
<td><?= $this->context->typeLink($constant->definedBy) ?></td>
|
||||
</tr>
|
||||
<?php endforeach; ?>
|
||||
|
||||
@@ -92,7 +92,7 @@ class Tabs extends Widget
|
||||
*/
|
||||
public $encodeLabels = true;
|
||||
/**
|
||||
* @var string, specifies the Bootstrap tab styling.
|
||||
* @var string specifies the Bootstrap tab styling.
|
||||
*/
|
||||
public $navType = 'nav-tabs';
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@
|
||||
|
||||
namespace yii\redis;
|
||||
|
||||
use yii\base\InvalidParamException;
|
||||
use yii\base\NotSupportedException;
|
||||
use yii\db\Exception;
|
||||
use yii\db\Expression;
|
||||
|
||||
@@ -77,7 +77,7 @@ class QueryBuilder extends Object
|
||||
|
||||
$clauses = [
|
||||
$this->buildSelect($query->select, $params, $query->distinct, $query->selectOption),
|
||||
$this->buildFrom($from, $Params),
|
||||
$this->buildFrom($from, $params),
|
||||
$this->buildWhere($query->from, $query->where, $params),
|
||||
$this->buildGroupBy($query->groupBy),
|
||||
$this->buildWithin($query->within),
|
||||
|
||||
Reference in New Issue
Block a user