From 4a0730bb871f1281c0b80fb54f65d2aa6a9b04dc Mon Sep 17 00:00:00 2001 From: nguyenk Date: Thu, 27 Sep 2018 06:36:53 +0200 Subject: [PATCH] Fix type in Readme Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 45e27a5..e60f9a4 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ As we are these can be chained as following: ```php $hydrator ->field('foo')->string()->then() - ->field('bar')->int() // Note that call o method then() is optional! + ->field('bar')->int() // Note that call to method then() is optional! ->field('baz')->float() ; ```