Browse Source

Merge pull request #1582 from AndreasHeiberg/patch-1

fixed typo
Taylor Otwell 12 years ago
parent
commit
2e82761788
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/documentation/database/eloquent.md

+ 1 - 1
laravel/documentation/database/eloquent.md

@@ -520,7 +520,7 @@ Or, mass-assignment may be accomplished using the **fill** method.
 
 
 	$user->save();
 	$user->save();
 
 
-By default, all attribute key/value pairs will be store during mass-assignment. However, it is possible to create a white-list of attributes that will be set. If the accessible attribute white-list is set then no attributes other than those specified will be set during mass-assignment.
+By default, all attribute key/value pairs will be stored during mass-assignment. However, it is possible to create a white-list of attributes that will be set. If the accessible attribute white-list is set then no attributes other than those specified will be set during mass-assignment.
 
 
 You can specify accessible attributes by assigning the **$accessible** static array. Each element contains the name of a white-listed attribute.
 You can specify accessible attributes by assigning the **$accessible** static array. Each element contains the name of a white-listed attribute.