From efdc12ed255fc04eb84d5f1eb57db06b82094573 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Sat, 5 Jan 2013 21:07:31 +0100 Subject: [PATCH] Fix typo. --- laravel/documentation/database/eloquent.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/laravel/documentation/database/eloquent.md b/laravel/documentation/database/eloquent.md index 4269bf19..b2178635 100644 --- a/laravel/documentation/database/eloquent.md +++ b/laravel/documentation/database/eloquent.md @@ -36,7 +36,7 @@ ## Conventions - Each table should have a primary key named **id**. - Each table name should be the plural form of its corresponding model name. -Sometimes you may wish to use a table name other than the plural form of your model, or a diffrent primary key column. No problem. Just add a static **table** property your model: +Sometimes you may wish to use a table name other than the plural form of your model, or a different primary key column. No problem. Just add a static **table** property your model: class User extends Eloquent {