From 95be3593ead612f0f984131e3fa369ea19d9dfdc Mon Sep 17 00:00:00 2001 From: OliBridgman Date: Sun, 4 Jan 2015 23:32:19 +1300 Subject: [PATCH] Update 01_Data_Model_and_ORM.md Couple of grammatical errors. --- docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md b/docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md index 2c7bc34dc..9854e98fc 100644 --- a/docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md +++ b/docs/en/02_Developer_Guides/00_Model/01_Data_Model_and_ORM.md @@ -118,7 +118,7 @@ Or, a better way is to use the `create` method. $player = Player::create();
-Using the `create()` method provides chainability, which can create add elegance and brevity to your code, e.g. `Player::create()->write()`. More importantly, however, it will look up the class in the [Injector](../extending/injector) so that can the class can be overriden by [dependency injection](http://en.wikipedia.org/wiki/Dependency_injection). +Using the `create()` method provides chainability, which can add elegance and brevity to your code, e.g. `Player::create()->write()`. More importantly, however, it will look up the class in the [Injector](../extending/injector) so that the class can be overriden by [dependency injection](http://en.wikipedia.org/wiki/Dependency_injection).