wording fixed on readme

This commit is contained in:
Yessiest 2023-09-16 18:30:03 +04:00
parent f807d5ca8d
commit 8d30faf52f
1 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
# The strange case of Dr. Rack and Mr. Hyde # 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. 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 # Examples
A simple "Hello, World!" HTTP API using Hyde A simple "Hello, World!" app using Hyde
```ruby ```ruby
require 'hyde' require 'hyde'
@ -20,7 +20,7 @@ end
run app run app
``` ```
A push/pull stack as an HTTP API A push/pull stack as an app
```ruby ```ruby
require 'hyde' require 'hyde'