From 7e05e956b368c21cbafff9908fc992f971e50b5a Mon Sep 17 00:00:00 2001 From: unionolivia Date: Wed, 22 May 2019 15:03:04 +0100 Subject: [PATCH] Fix typo in db-active-record.md (#17317) [skip ci] --- docs/guide/db-active-record.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/db-active-record.md b/docs/guide/db-active-record.md index 49694d2833..23a8376887 100644 --- a/docs/guide/db-active-record.md +++ b/docs/guide/db-active-record.md @@ -1241,7 +1241,7 @@ Note that this differs from our earlier example which only brings back customers #### Relation table aliases -As noted before, when using JOIN in a query, we need to disambiguate column names. Therefor often an alias is +As noted before, when using JOIN in a query, we need to disambiguate column names. Therefore often an alias is defined for a table. Setting an alias for the relational query would be possible by customizing the relation query in the following way: ```php