From 424241f29c65b58a3eb8d2e5869ff653a794bac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Sun, 9 Aug 2020 22:48:52 +0200 Subject: [PATCH] Use more accurate terminology (#8236) I think this was a mistake when writing this documentation, and that the original author meant to use attribute here, columns do not have columns, they have attributes. --- docs/en/reference/inheritance-mapping.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/reference/inheritance-mapping.rst b/docs/en/reference/inheritance-mapping.rst index 4d21ac73b81..3b29ad8ac29 100644 --- a/docs/en/reference/inheritance-mapping.rst +++ b/docs/en/reference/inheritance-mapping.rst @@ -584,7 +584,7 @@ Things to note: - The "attribute override" specifies the overrides base on the property name. - The column type *CANNOT* be changed. If the column type is not equal you get a ``MappingException`` -- The override can redefine all the columns except the type. +- The override can redefine all the attributes except the type. Query the Type --------------