diff --git a/content/roadmaps/117-flutter/content/108-working-with-apis/101-web-sockets.md b/content/roadmaps/117-flutter/content/108-working-with-apis/101-web-sockets.md
index d12b744e0..2895806dd 100644
--- a/content/roadmaps/117-flutter/content/108-working-with-apis/101-web-sockets.md
+++ b/content/roadmaps/117-flutter/content/108-working-with-apis/101-web-sockets.md
@@ -1,6 +1,7 @@
-# Web sockets
+# Web Sockets
+
+In addition to normal HTTP requests, you can connect to servers using WebSockets. Web sockets allows for bidirectional communication between a client (such as a web browser) and a server over a single, long-lived connection. They are a more efficient alternative to HTTP for providing real-time data, as they allow for the server to push data to the client as soon as it becomes available, rather than requiring the client to continuously poll the server for updates.
-In addition to normal HTTP requests, you can connect to servers using WebSockets. WebSockets allow for two-way communication with a server without polling.
Free Content
Work with WebSockets