From 9b4ac572df38296da61e646b7ceb57e5f8582bf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Wed, 10 May 2017 00:47:21 +0200 Subject: [PATCH] Fix description of case used in attribute names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Attributes are written in lowerCamelCase, not Pascal case (aka UpperCamelCase). Signed-off-by: Daniel Calviño Sánchez --- developer_manual/app/database.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_manual/app/database.rst b/developer_manual/app/database.rst index b6c1bd4dd..5875e4dba 100644 --- a/developer_manual/app/database.rst +++ b/developer_manual/app/database.rst @@ -114,7 +114,7 @@ or:: Entities ======== -Entities are data objects that carry all the table's information for one row. Every Entity has an **id** field by default that is set to the integer type. Table rows are mapped from lower case and underscore separated names to pascal case attributes: +Entities are data objects that carry all the table's information for one row. Every Entity has an **id** field by default that is set to the integer type. Table rows are mapped from lower case and underscore separated names to *lowerCamelCase* attributes: * **Table column name**: phone_number * **Property name**: phoneNumber