@@ -171,7 +171,7 @@ After this, you have to create getters and setters for the properties.
171
171
This Document uses the parent document and a node name to determine its
172
172
position in the tree. Because there isn't any name set, it is generated
173
173
automatically. If you want to use a specific node name, such as a
174
- sluggified version of the title, you need to add a property mapped as
174
+ slugified version of the title, you need to add a property mapped as
175
175
``Nodename ``.
176
176
177
177
A Document must have an id property. This represents the full path (parent
@@ -272,7 +272,7 @@ you've configured a route to display a specific task by name::
272
272
273
273
To retrieve objects from the document repository using both the ``find `` and
274
274
``findMany `` methods and all helper methods of a class-specific repository. In
275
- PHPCR, it's often unkown for developers which node has the data for a specific
275
+ PHPCR, it's often unknown for developers which node has the data for a specific
276
276
document, in that case you should use the document manager to find the nodes
277
277
(for instance, when you want to get the root document). In example above, we
278
278
know they are ``Task `` documents and so we can use the repository.
@@ -294,7 +294,7 @@ The repository contains all sorts of helpful methods::
294
294
.. tip ::
295
295
296
296
If you use the repository class, you can also create a custom repository
297
- for a specific document. This helps with "Seperation of Concern" when using more
297
+ for a specific document. This helps with "Separation of Concern" when using more
298
298
complex queries. This is similar to how it's done in Doctrine ORM, for
299
299
more information read "`Custom Repository Classes `_" in the core
300
300
documentation.
0 commit comments