Skip to content

Commit 616518d

Browse files
authored
Fixing typos
1 parent 599b697 commit 616518d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/daos.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Generated DAO classes
22

3-
DAO instances will provide you with a shortcut to your Enities' `RepositoyManagers`. If you are familiar with Doctrine ORM, you may know that this code :
3+
DAO instances will provide you with a shortcut to your Entities' `RepositoryManagers`. If you are familiar with Doctrine ORM, you may know that this code :
44

55
```php
66
$user = $entityManager->find('PATH\TO\ENTITIES\User', 7);
@@ -30,4 +30,4 @@ $user = $userDao->findByLogin('fooBar');//Find user with login 'fooBar', with au
3030
* the `BaseDao` class is generated each time the process is run
3131
* the `Dao` class is generated only once. It extends the `BaseDao`, and will remain unmodifies after being created as you may code your own requests there.
3232

33-
As Mouf provides other ORM packages, the DAOInterface is implemented by the Generated DAOs, this will simply add some functions for Object retrieval : `getById`, `create`, `save`, and `getList` methods.
33+
As Mouf provides other ORM packages, the DAOInterface is implemented by the Generated DAOs, this will simply add some functions for Object retrieval : `getById`, `create`, `save`, and `getList` methods.

0 commit comments

Comments
 (0)