From ffda8eb639aaf92c9ad2214636c6619808171e1d Mon Sep 17 00:00:00 2001 From: Kodi Craft Date: Fri, 21 Jun 2024 11:58:24 +0200 Subject: [PATCH] Fix typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2dc87e2..f7733d5 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Eagle is still in development and not currently usable. The current state is bar ## What is Eagle? -Eagle is a library designed to make "full-stack" applications with Rust. It allows you to define a communication protocl +Eagle is a library designed to make "full-stack" applications with Rust. It allows you to define a communication protocol based on simple "questions" and "answers" which can be implemented as simple functions. From the perspective of the client (which sends "questions") the protocol is simply a set of async functions on a struct. From the perspective of the server (which sends "answers") the protocol is a trait which it implements on any struct of its choice.