diff --git a/README.md b/README.md
index fe303e6..c09fb40 100644
--- a/README.md
+++ b/README.md
@@ -4,13 +4,15 @@ LIME - A lightweight messaging library
![Go](https://github.com/takenet/lime-go/workflows/Go/badge.svg?branch=master)
-LIME allows you to build scalable, real-time messaging applications using a JSON-based [open protocol](http://limeprotocol.org). It's **fully asynchronous** and supports any persistent transport like TCP or Websockets.
+LIME allows you to build scalable, real-time messaging applications using a JSON-based [open protocol](http://limeprotocol.org).
+It's **fully asynchronous** and support persistent transports like TCP or Websockets.
You can send and receive any type of document into the wire as long it can be represented as JSON or text (plain or encoded with base64) and it has a **MIME type** to allow the other party handle it in the right way.
The connected nodes can send receipts to the other parties to notify events about messages (for instance, a message was received or the content invalid or not supported).
-Besides that, there's a **REST capable** command interface with verbs (*get, set and delete*) and resource identifiers (URIs) to allow rich messaging scenarios. You can use that to provide services like on-band account registration or instance-messaging resources, like presence or roster management.
+Besides that, there's a **REST capable** command interface with verbs (*get, set and delete*) and resource identifiers (URIs) to allow rich messaging scenarios.
+You can use that to provide services like on-band account registration or instance-messaging resources, like presence or roster management.
Finally, it has built-in support for authentication, transport encryption and compression.
diff --git a/examples/ws-chat/client/dist/index.html b/examples/ws-chat/client/dist/index.html
index fc91365..b4742e9 100644
--- a/examples/ws-chat/client/dist/index.html
+++ b/examples/ws-chat/client/dist/index.html
@@ -16,10 +16,7 @@
-
+
@@ -31,19 +28,24 @@
The available commands are:
-
- /name [new_nickname]: Sets a new nickname
+ /name [new_nickname]: Sets a new nickname.
-
- /to [nickname] [message]: Sends a private message to a nickname
+ /to [nickname] [message]: Sends a private message to a nickname.
+
+ -
+ /friends: Display your friends list.
+
+ -
+ /add [nickname]: Adds a nickname to your friends list.
+
+ -
+ /remove [nickname]: Removes a nickname from your friends list.
-
-
-
-