From 1d0c013a1e6a158f694951d71e5bbcb3dff01036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Lorenzo=20Rodr=C3=ADguez?= Date: Sat, 12 Jul 2014 14:13:43 +0200 Subject: [PATCH] Fixed more typos --- src/ORM/Table.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ORM/Table.php b/src/ORM/Table.php index 163cff3ec68..ce19594ac32 100644 --- a/src/ORM/Table.php +++ b/src/ORM/Table.php @@ -1609,7 +1609,7 @@ public function entityValidator() { * ); * }}} * - * You can limit field that will be present in the constructed entity by + * You can limit fields that will be present in the constructed entity by * passing the `fieldList` option, which is also accepted for associations: * * {{{ @@ -1643,7 +1643,7 @@ public function newEntity(array $data = [], array $options = []) { * ); * }}} * - * You can limit field that will be present in the constructed entities by + * You can limit fields that will be present in the constructed entities by * passing the `fieldList` option, which is also accepted for associations: * * {{{ @@ -1670,7 +1670,7 @@ public function newEntities(array $data, array $options = []) { * `$data` array will appear, those that can be matched by primary key will get * the data merged, but those that cannot, will be discarded. * - * You can limit field that will be present in the merged entity by + * You can limit fields that will be present in the merged entity by * passing the `fieldList` option, which is also accepted for associations: * * {{{ @@ -1700,7 +1700,7 @@ public function patchEntity(EntityInterface $entity, array $data, array $options * `$data` array will appear, those that can be matched by primary key will get * the data merged, but those that cannot, will be discarded. * - * You can limit field that will be present in the merged entities by + * You can limit fields that will be present in the merged entities by * passing the `fieldList` option, which is also accepted for associations: * * {{{