Skip to content

Commit

Permalink
fix(docs): modify request.md (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
houseme authored Oct 29, 2024
1 parent 14259a1 commit bb8d6c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/book/concepts/request.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ If the type we provide is:
```rust
#[derive(Deserialize)]
struct Users {
id: Vec<i64>
ids: Vec<i64>
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/es/book/concepts/request.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Si el tipo de datos que tenemos es:
```rust
#[derive(Deserialize)]
struct Users {
id: Vec<i64>
ids: Vec<i64>
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/zh-hans/book/concepts/request.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ assert_eq!(user.id, 123);
```rust
#[derive(Deserialize)]
struct Users {
id: Vec<i64>
ids: Vec<i64>
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/zh-hant/book/concepts/request.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ assert_eq!(user.id, 123);
```rust
#[derive(Deserialize)]
struct Users {
id: Vec<i64>
ids: Vec<i64>
}
```

Expand Down

0 comments on commit bb8d6c5

Please sign in to comment.