From b1466e6d3eb98be74ec1cf66531dcfc9243136ce Mon Sep 17 00:00:00 2001 From: Alessandro Minoccheri Date: Wed, 11 Oct 2017 17:04:29 +0200 Subject: [PATCH] fixed little typo inside documentation --- docs/en/reference/dql-doctrine-query-language.rst | 2 +- docs/en/reference/inheritance-mapping.rst | 2 +- docs/en/reference/native-sql.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/reference/dql-doctrine-query-language.rst b/docs/en/reference/dql-doctrine-query-language.rst index 8944ce66e..0b0cad658 100644 --- a/docs/en/reference/dql-doctrine-query-language.rst +++ b/docs/en/reference/dql-doctrine-query-language.rst @@ -2,7 +2,7 @@ Doctrine Query Language =========================== DQL stands for Doctrine Query Language and is an Object -Query Language derivate that is very similar to the Hibernate +Query Language derivative that is very similar to the Hibernate Query Language (HQL) or the Java Persistence Query Language (JPQL). In essence, DQL provides powerful querying capabilities over your diff --git a/docs/en/reference/inheritance-mapping.rst b/docs/en/reference/inheritance-mapping.rst index 2063624fe..d489b30b6 100644 --- a/docs/en/reference/inheritance-mapping.rst +++ b/docs/en/reference/inheritance-mapping.rst @@ -159,7 +159,7 @@ This strategy is very efficient for querying across all types in the hierarchy or for specific types. No table joins are required, only a WHERE clause listing the type identifiers. In particular, relationships involving types that employ this mapping strategy are -very performant. +very performing. There is a general performance consideration with Single Table Inheritance: If the target-entity of a many-to-one or one-to-one diff --git a/docs/en/reference/native-sql.rst b/docs/en/reference/native-sql.rst index 75231b7a9..fe633aea6 100644 --- a/docs/en/reference/native-sql.rst +++ b/docs/en/reference/native-sql.rst @@ -63,7 +63,7 @@ This has several benefits: - The API is much simpler than the usual ``ResultSetMapping`` API. One downside is that the builder API does not yet support entities -with inheritance hierachies. +with inheritance hierarchies. .. code-block:: php