Skip to content

Commit 42499f7

Browse files
committed
Updated readme
1 parent 0f3c14d commit 42499f7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

readme.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,12 +101,11 @@ $db->where('title', string);
101101
$results = $db->get('tableName');
102102
print_r($results); // contains array of returned rows
103103

104-
Optionaly you can use method chaining to call where multiple times without calling referancing your object over an over:
104+
Optionally you can use method chaining to call where multiple times without referancing your object over an over:
105105
$results = $db
106106
->where('id', 1)
107107
->where('title', 'MyTitle')
108108
->get('tableName');
109-
print_r($results); // contains array of returned rows
110109

111110
</code>
112111
</pre>

0 commit comments

Comments
 (0)