From 814070a52ebe95f9e20414a25f7b70cc2de859fa Mon Sep 17 00:00:00 2001 From: vlw Date: Thu, 12 Jun 2025 12:44:10 +0200 Subject: [PATCH] doc(fix): missed reference of "for()" to "from()" in README (#48) Of course I missed to change one reference of `for()` to `from()`. Reviewed-on: https://codeberg.org/vlw/php-mysql/pulls/48 Co-authored-by: vlw Co-committed-by: vlw --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78dfbd9..1b18d0f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ which would be equivalent to the following in MySQL: SELECT `columns` FROM `table` WHERE `filter` ORDER BY `order_by` LIMIT `limit`; ``` -- All methods can be chained in any order (even multiple times) after a [`for()`](#for) as long as a [`select()`](#select), [`insert()`](#insert), [`update()`](#update), or [`delete()`](#delete) is the last method. +- All methods can be chained in any order (even multiple times) after a [`from()`](#from) as long as a [`select()`](#select), [`insert()`](#insert), [`update()`](#update), or [`delete()`](#delete) is the last method. - Chaining the same method more than once will override its previous value. Passing `null` to any method that accepts it will unset its value completely. ## Install from composer