Skip to content
This repository was archived by the owner on Nov 26, 2025. It is now read-only.

Commit c44fe5a

Browse files
committed
Merge pull request #7 from mathroc/fix/typos
fix typos
2 parents 0955218 + 940cb4e commit c44fe5a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ $lock->acquire();
6464

6565
### Auto release
6666

67-
`$lock->release()` is called automatically when the lock is destroyed so you d'ont need to manually release it at the end of a script or if it got out of scope.
67+
`$lock->release()` is called automatically when the lock is destroyed so you don't need to manually release it at the end of a script or if it got out of scope.
6868

6969
```php
7070
use TH\Lock\FileLock;
7171

7272
function batch() {
73-
$lock = new FileLock('/fome/file');
73+
$lock = new FileLock('/some/file');
7474
$lock->acquire();
7575

7676
// lot of editing on file

0 commit comments

Comments
 (0)