File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 4343
4444Tide is a minimal and pragmatic Rust web application framework built for
4545rapid development. It comes with a robust set of features that make building
46- database-backed web applications easier and more fun.
46+ async web applications and APIs easier and more fun.
4747
4848## Getting started
4949
@@ -59,8 +59,8 @@ async-std = { version = "1.6.0", features = ["attributes"] }
5959
6060## Examples
6161
62- Create an HTTP server that takes JSON, validates it, and responds with a
63- confirmation message.
62+ Create an HTTP server that receives a JSON body , validates it, and responds
63+ with a confirmation message.
6464
6565``` rust
6666use tide :: Request ;
Original file line number Diff line number Diff line change 11//! Tide is a minimal and pragmatic Rust web application framework built for
22//! rapid development. It comes with a robust set of features that make
3- //! building database-backed web applications easier and more fun.
3+ //! building async web applications and APIs easier and more fun.
44//!
55//! # Getting started
66//!
1616//!
1717//! # Examples
1818//!
19- //! Create an HTTP server that takes JSON, validates it, and responds with a
19+ //! Create an HTTP server that receives a JSON body , validates it, and responds with a
2020//! confirmation message.
2121//!
2222//! ```no_run
You can’t perform that action at this time.
0 commit comments