From df3dfe9ba727bc459a0a55ee71ce5de343749443 Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Thu, 16 Sep 2021 09:05:08 +0200 Subject: [PATCH] Typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8dbfd09f..d327a0cf 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ PHP MySQL Engine works by providing a subclass of [PDO](https://www.php.net/manu You can instantiate the subclass as you would `PDO`, and use dependency injection or similar to provide that instance to your application code. ```php -// use a class specific to your cuurrent PHP version (APIs changed in major versions) +// use a class specific to your current PHP version (APIs changed in major versions) $pdo = new \Vimeo\MysqlEngine\Php8\FakePdo($dsn, $user, $password); // currently supported attributes $pdo->setAttribute(\PDO::ATTR_CASE, \PDO::CASE_LOWER);