From 907331becf927bbd370146d35ff835afb33926db Mon Sep 17 00:00:00 2001 From: Justin Pitts Date: Thu, 20 Jun 2024 08:36:01 -0700 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 87024e7..2b35e83 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The algorithm is known as an "asynchronous state-machine parser". It's a technique for *parsing* that you don't learn in college. It's more *efficient*, but more importantly, it's more *scalable*. That's why your browser uses a state-machine to parse GIFs, -and most web servers use state-machiens to parse incoming HTTP requests. +and most web servers use state-machines to parse incoming HTTP requests. This projects contains three versions: * `wc2o.c` is a simplified 25 line version highlighting the idea