From 4fe2c40e4d4212ddd102858f7779ae71a4161253 Mon Sep 17 00:00:00 2001 From: Mohit Mamoria Date: Thu, 27 Nov 2014 15:29:13 +0530 Subject: [PATCH] Fixed a typo Just fixed a simple typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a95ddfd10..82ec65f05 100644 --- a/README.md +++ b/README.md @@ -372,7 +372,7 @@ You may also use the create method to save a new model in a single line: **Updating a model** -o update a model, you may retrieve it, change an attribute, and use the save method. +To update a model, you may retrieve it, change an attribute, and use the save method. $user = User::first(); $user->email = 'john@foo.com';