Commit 6e13d5a8 authored by Kevin Kaske's avatar Kevin Kaske Committed by Alexander Butenko

Small changes to readme.md (#694)

Some small grammar/spelling changes.
parent 1151ee70
...@@ -560,7 +560,7 @@ $db->get("users"); ...@@ -560,7 +560,7 @@ $db->get("users");
// GIVES: SELECT SQL_NO_CACHE * FROM USERS; // GIVES: SELECT SQL_NO_CACHE * FROM USERS;
``` ```
Optionally you can use method chaining to call where multiple times without referencing your object over an over: Optionally you can use method chaining to call where multiple times without referencing your object over and over:
```php ```php
$results = $db $results = $db
...@@ -641,7 +641,7 @@ print_r ($products); ...@@ -641,7 +641,7 @@ print_r ($products);
``` ```
### Properties sharing ### Properties sharing
Its is also possible to copy properties It is also possible to copy properties
```php ```php
$db->where ("agentId", 10); $db->where ("agentId", 10);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment