Skip to content

Commit 6e14bac

Browse files
committed
Fixed minor grammar issues
1 parent e632d49 commit 6e14bac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/filesystem/lock_handler.rst

+2-2
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)