From 5d7b11fdcb2d6b2f729a1526a2e310bebe50769d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Fabr=C3=A9gat?= Date: Tue, 16 Oct 2018 10:50:43 +0200 Subject: [PATCH] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 43f4ae9..90dc506 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This package provides two directory iterators to list PHP classes : * [`DirectoryClassesIterator`](src/DirectoryClassesIterator.php) * [`RecursiveDirectoryClassesIterator`](src/RecursiveDirectoryClassesIterator.php) -The iterator loads the `.php` files using [`include_once()`](http://php.net/manual/function.include-once.php) and uses the [`ReflectionClass`](http://php.net/manual/class.reflectionclass.php) API to detect classes found within the loaded files. +The iterator loads the `.php` files using [`include_once()`](http://php.net/manual/function.include-once.php) and then the [`ReflectionClass`](http://php.net/manual/class.reflectionclass.php) API to detect classes found within the loaded files. ## Usage ```php