Skip to content

Commit 74bcffe

Browse files
committed
add feedback from review
1 parent 68c04b6 commit 74bcffe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
Tide is a minimal and pragmatic Rust web application framework built for
4545
rapid 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
6666
use tide::Request;

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
//!
@@ -16,7 +16,7 @@
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

0 commit comments

Comments
 (0)