doc/book/en/B0012-schema-definition.en.txt
changeset 1159 16a426d214ae
parent 301 e47150482ac1
child 1163 232aef110a0a
--- a/doc/book/en/B0012-schema-definition.en.txt	Wed Mar 25 14:42:44 2009 +0100
+++ b/doc/book/en/B0012-schema-definition.en.txt	Wed Mar 25 16:13:23 2009 +0100
@@ -8,7 +8,7 @@
 the description of attributes and relations for the defined entity type,
 for example ::
 
-  class Personne(EntityType):
+  class Person(EntityType):
     """A person with the properties and the relations necessary for my
     application"""
 
@@ -377,10 +377,10 @@
 
 You have to get a shell on your application ::
 
-   cubicweb-ctl shell moninstance
+   cubicweb-ctl shell myinstance
 
 and type ::
 
-   add_entity_type('Personne')
+   add_entity_type('Person')
 
 And restart your application!