From 8d30faf52f2b2654f5ce772680719543a22fdec6 Mon Sep 17 00:00:00 2001 From: Yessiest Date: Sat, 16 Sep 2023 18:30:03 +0400 Subject: [PATCH] wording fixed on readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d17b1f5..c37c169 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # The strange case of Dr. Rack and Mr. Hyde -Hyde is a library that provides a DSL for creating HTTP servers. As of now it is using Rack as the webserver adapter, but ideally it shouldn't take much work to make it run on top of any webserver. +Hyde is a library that provides a DSL for creating web applications. As of now it is using Rack as the webserver adapter, but ideally it shouldn't take much work to make it run on top of any webserver. Hyde was made mostly for fun. Ideally it will become something more, but as of yet it's just an experiment revolving around Ruby Metaprogramming and its DSL capabilities. # Examples -A simple "Hello, World!" HTTP API using Hyde +A simple "Hello, World!" app using Hyde ```ruby require 'hyde' @@ -20,7 +20,7 @@ end run app ``` -A push/pull stack as an HTTP API +A push/pull stack as an app ```ruby require 'hyde'