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

Commit acf90fe

Browse files
committed
Minor grammar fixes in readme
1 parent e7cabee commit acf90fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ fclose($fh);
102102
```
103103

104104
**Note**: write() will truncate your file to 0bytes. You may open a writeable stream with append() which will point
105-
the cursor to the end of the file or create it if it does not exists yet. (append() is only compatible with libsmbclient-php)
105+
the cursor to the end of the file or create it if it does not exist yet. (append() is only compatible with libsmbclient-php)
106106
```php
107107
$fh = $share->append('test.txt');
108108
fwrite($fh, 'bar');
@@ -141,7 +141,7 @@ Note, setting the protocol version is not supported with php-smbclient version 1
141141

142142
The `smbclient` backend needs to get various information about the system it's running on to function
143143
such as the paths of various binaries or the system timezone.
144-
While the default logic for getting this information should work on most systems, it possible to customize this behaviour.
144+
While the default logic for getting this information should work on most systems, it is possible to customize this behaviour.
145145

146146
In order to customize the integration you provide a custom implementation of `ITimezoneProvider` and/or `ISystem` and pass them as arguments to the `ServerFactory`.
147147

0 commit comments

Comments
 (0)