From 5e1a85daffa779c0dfc372a9e2d9b29048c065aa Mon Sep 17 00:00:00 2001 From: pine3ree Date: Mon, 16 Oct 2023 03:32:59 +0200 Subject: [PATCH] Fix typos in phpdoc Signed-off-by: pine3ree --- src/Sql/Statement.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Sql/Statement.php b/src/Sql/Statement.php index 82aff209..591f8a6c 100644 --- a/src/Sql/Statement.php +++ b/src/Sql/Statement.php @@ -12,9 +12,8 @@ use pine3ree\Db\Sql\Element; /** - * A sql-statement object's goal is to abstract a sql statement collecting parts - * (abtractions for clauses, predicates, ...) later compiled by a sql-driver into - * a platform pecific SQL-string + * Abstracts a sql statement collecting parts (abstractions for clauses, predicates, ...) + * later compiled by a sql-driver into a platform specific SQL-string */ abstract class Statement extends Element {