[FIX] tutorials/getting_started: fix typos in example model name

Commit f36c612d13 changed the model name
in Chapter 4 without updating the other occurences.

closes odoo/documentation#5505

X-original-commit: b6f923d111
Signed-off-by: Antoine Vandevenne (anv) <anv@odoo.com>
This commit is contained in:
Antoine Vandevenne (anv)
2023-08-16 09:38:31 +00:00
parent 2b6c17eebf
commit bb04b18e7f
6 changed files with 15 additions and 15 deletions

View File

@@ -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"
...