From 0fbec30bbc5c40f77a22ea7023f9ce28e8b3ef41 Mon Sep 17 00:00:00 2001 From: Sohel Ahmed Mesaniya Date: Mon, 14 May 2018 15:29:00 +0530 Subject: [PATCH] Docs enhancement (#15464) [skip ci] --- framework/base/Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/base/Controller.php b/framework/base/Controller.php index 9120c17b08..27f2343053 100644 --- a/framework/base/Controller.php +++ b/framework/base/Controller.php @@ -211,7 +211,7 @@ class Controller extends Component implements ViewContextInterface * The method first checks if the action ID has been declared in [[actions()]]. If so, * it will use the configuration declared there to create the action object. * If not, it will look for a controller method whose name is in the format of `actionXyz` - * where `Xyz` stands for the action ID. If found, an [[InlineAction]] representing that + * where `xyz` is the action ID. If found, an [[InlineAction]] representing that * method will be created and returned. * @param string $id the action ID. * @return Action|null the newly created action instance. Null if the ID doesn't resolve into any action.