mirror of
https://github.com/odoo/documentation.git
synced 2026-01-04 10:46:04 +07:00
[FIX] tutorials/getting_started: fix typos in example model name
Commitf36c612d13changed the model name in Chapter 4 without updating the other occurences. closes odoo/documentation#5505 X-original-commit:b6f923d111Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
This commit is contained in:
@@ -40,7 +40,7 @@ Python inheritance::
|
||||
from odoo import fields, models
|
||||
|
||||
class TestModel(models.Model):
|
||||
_name = "test.model"
|
||||
_name = "test_model"
|
||||
_description = "Test Model"
|
||||
|
||||
...
|
||||
@@ -55,7 +55,7 @@ specific business logic::
|
||||
from odoo import fields, models
|
||||
|
||||
class TestModel(models.Model):
|
||||
_name = "test.model"
|
||||
_name = "test_model"
|
||||
_description = "Test Model"
|
||||
|
||||
...
|
||||
|
||||
Reference in New Issue
Block a user