File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ PHP code will wait indefinitely until the lock is released by another process.
6666
6767 Be aware of the fact that the resource lock is automatically released as soon
6868 as PHP applies the garbage-collection process to the ``LockHandler `` object.
69- This means that if you refactor the first example showed in this article as
69+ This means that if you refactor the first example shown in this article as
7070 follows::
7171
7272 use Symfony\Component\Filesystem\LockHandler;
@@ -77,7 +77,7 @@ PHP code will wait indefinitely until the lock is released by another process.
7777 return 0;
7878 }
7979
80- Now the code won't work as expected, because PHP's garbage collection mechanism
80+ Now the code won't work as expected because PHP's garbage collection mechanism
8181 removes the reference to the ``LockHandler `` object and thus, the lock is released
8282 just after it's been created.
8383
You can’t perform that action at this time.
0 commit comments