mirror of
https://github.com/odoo/documentation.git
synced 2025-12-14 08:29:13 +07:00
The coding guidelines establish that we have to write class declaration for both Python and JavaScript in camel case but it's actually in Pascal case. It also establishing that model variable (ex: `Partner = self.env['res.partner]'`) has to be in camel case but it's actually following the Pascal case. Pascal case has to start all variables with a capital letter where camel case is starting with a lower case letter. Source: https://builtin.com/articles/pascal-case-vs-camel-case no task id closes odoo/documentation#14679 Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>