From 8899685bc076ea030d9c2d05b28ebec8f4f63308 Mon Sep 17 00:00:00 2001 From: Kevin LEVRON Date: Fri, 13 Jun 2014 19:00:16 +0200 Subject: [PATCH] Fix typo [skip ci] --- docs/guide/intro-upgrade-from-v1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/intro-upgrade-from-v1.md b/docs/guide/intro-upgrade-from-v1.md index c740850..6f90e1c 100644 --- a/docs/guide/intro-upgrade-from-v1.md +++ b/docs/guide/intro-upgrade-from-v1.md @@ -443,7 +443,7 @@ records by filtering with the primary keys of the primary records. Instead of returning [[yii\db\ActiveRecord|ActiveRecord]] objects, you may chain the [[yii\db\ActiveQuery::asArray()|asArray()]] method when building a query to return a large number of records. This will cause the query result to be returned -as arrays, which can significantly reduce the needed CPU time and memory if large number of records . For example, +as arrays, which can significantly reduce the needed CPU time and memory if large number of records . For example: ```php $customers = Customer::find()->asArray()->all();