Skip to content

Commit

Permalink
docs: readme
Browse files Browse the repository at this point in the history
  • Loading branch information
faustoq committed Jul 8, 2024
1 parent 9bb687d commit 2045b98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ $index->insert([
['id' => 2, 'name' => 'Mario Rossi', 'age' => 25 ]
]);

// Update record
// Update records
$index->update([[ 'id' => 1, 'name' => 'Jane Doe', 'age' => 30 ]]);

// Delete record
// Delete records
$index->delete([[ 'id' => 1 ]]);

// Trigger deployment
Expand Down

0 comments on commit 2045b98

Please sign in to comment.