diff --git a/html/about/guide.html b/html/about/guide.html
index 356bafa..6d3f4ee 100755
--- a/html/about/guide.html
+++ b/html/about/guide.html
@@ -40,16 +40,13 @@ pre { width:700px; white-space: pre-wrap; word-wrap: break-word; }
Scaling
-Released July 8, 2022
-
-
-Wiby is a search engine for the World Wide Web. The source code is now free under the GPLv2 license. I have been longing for this day! You can watch a quick demo here.
+Wiby is a search engine for the World Wide Web. The source code is now free as of July 8, 2022 under the GPLv2 license. I have been longing for this day! You can watch a quick demo here.
It includes a web interface allowing guardians to control where, how far, and how often it crawls websites and follows hyperlinks. The search index is stored inside of a MySQL full-text index.
-Fast queries are maintained by concurrently reading different sections of the index across multiple replication servers, returning a list of top results from each replica,
+Fast queries are maintained by concurrently reading different sections of the index across multiple replication servers or across duplicate server connections, returning a list of top results from each connection,
then searching the combined list to ensure correct ordering. Replicas that fail are automatically excluded; new replicas are easy to include.
As new pages are crawled, they are stored randomly across the index, ensuring each replica can obtain relevant results.
@@ -509,7 +506,7 @@ UNLOCK TABLES;
You can now close that window if you want.
-On the replica server, login to mysql and create the database:
+On the replica server, login to MySQL and create the database:
CREATE DATABASE wiby;
EXIT;