From 33285c5392b51a574740a2dd48e6cb0dda289963 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Wed, 3 Jul 2013 12:09:17 +0400 Subject: [PATCH] fixed wording --- docs/guide/active-record.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/active-record.md b/docs/guide/active-record.md index 8cf957c03e..5d16806dff 100644 --- a/docs/guide/active-record.md +++ b/docs/guide/active-record.md @@ -163,7 +163,7 @@ $customer = Customer::find($id); $customer->email = 'james@example.com'; $customer->save(); // equivalent to $customer->update(); // Note that model attributes will be validated first and -// model will not be saved unless valid. +// model will not be saved unless it's valid. // to delete an existing customer record $customer = Customer::find($id);