add a missing critical whitespace (#5408)

diff --git a/examples/example-tls/README.md b/examples/example-tls/README.md
index 6839993..c96b0ed 100644
--- a/examples/example-tls/README.md
+++ b/examples/example-tls/README.md
@@ -90,7 +90,7 @@
 
 ```bash
 # Run the server:
-./build/install/example-tls/bin/hello-world-tls-serverlocalhost 54440 /tmp/sslcert/server.crt /tmp/sslcert/server.pem /tmp/sslcert/ca.crt
+./build/install/example-tls/bin/hello-world-tls-server localhost 54440 /tmp/sslcert/server.crt /tmp/sslcert/server.pem /tmp/sslcert/ca.crt
 # In another terminal run the client
 ./build/install/example-tls/bin/hello-world-tls-client localhost 54440 /tmp/sslcert/ca.crt /tmp/sslcert/client.crt /tmp/sslcert/client.pem
 ```