From b717abe1aa2ea8548185cf44625651b7422bc9c3 Mon Sep 17 00:00:00 2001 From: Scott Reeves Date: Mon, 19 Jul 2010 15:29:18 -0700 Subject: [PATCH] Fixing typo in Constructor description. Signed-off-by: mark_story --- cake/libs/model/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/libs/model/model.php b/cake/libs/model/model.php index 07bb37e4f..d2b6d94d1 100644 --- a/cake/libs/model/model.php +++ b/cake/libs/model/model.php @@ -387,7 +387,7 @@ class Model extends Overloadable { * * ### Dynamically creating models * - * You can dynamically create model instances using the the $id array syntax. + * You can dynamically create model instances using the $id array syntax. * * {{{ * $Post = new Model(array('table' => 'posts', 'name' => 'Post', 'ds' => 'connection2'));