Skip to content

Commit 013a5c0

Browse files
Merge pull request #1463 from ketkee-aryamane/fix-invalid-ip-addresses
fix invalid IP address
2 parents 94c8605 + 48919ff commit 013a5c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/host-config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Notice that the `ClientBuilder` object allows chaining method calls for brevity.
2929

3030
```php
3131
$hosts = [
32-
'192.168.1.1:9200', // IP + Port
33-
'192.168.1.2', // Just IP
32+
'192.0.2.0:9200', // IP + Port
33+
'192.0.2.0', // Just IP
3434
'mydomain.server.com:9201', // Domain + Port
3535
'mydomain2.server.com', // Just Domain
3636
'https://localhost', // SSL to localhost

0 commit comments

Comments
 (0)