From b70ba7661b276dac8ef51dbef98ea48eab8e04ee Mon Sep 17 00:00:00 2001 From: Jawad Date: Mon, 11 Aug 2014 00:26:35 +0100 Subject: [PATCH] Update db-active-record.md to correct a minor typo changed problem to problems to correct a minor typo. --- docs/guide/db-active-record.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/db-active-record.md b/docs/guide/db-active-record.md index afbe77d773..aed6c13c6f 100644 --- a/docs/guide/db-active-record.md +++ b/docs/guide/db-active-record.md @@ -20,7 +20,7 @@ $customer->save(); ``` The above code is equivalent to using the following raw SQL statement, which is less -intuitive, more error prone, and may have compatibility problem for different DBMS: +intuitive, more error prone, and may have compatibility problems for different DBMS: ```php $db->createCommand('INSERT INTO customer (name) VALUES (:name)', [