Skip to content

Commit 200fe11

Browse files
committed
Edit
1 parent 7d77384 commit 200fe11

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

SeaORM/docs/05-basic-crud/05-update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Fruit::update_many().filter(fruit::Column::Id.eq_any(vec![2, 3]))
6767

6868
## Returning Updated Models
6969

70-
Postgres only, SQLite requires the `sqlite-use-returning-for-3_35` feature flag.
70+
Postgres and SQLite only, MariaDB requires the `mariadb-use-returning` feature flag.
7171

7272
```rust
7373
let fruits: Vec<fruit::Model> = Fruit::update_many()

SeaORM/docs/05-basic-crud/07-delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ assert_eq!(res.rows_affected, 2);
3939

4040
## Returning Deleted Models
4141

42-
Postgres only, SQLite requires the `sqlite-use-returning-for-3_35` feature flag.
42+
Postgres and SQLite only, MariaDB requires the `mariadb-use-returning` feature flag.
4343

4444
```rust
4545
assert_eq!(

SeaORM/docs/06-relation/07-entity-loader.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl EntityLoader {
5757
let mut select = self.select;
5858

5959
if self.with.fruit {
60-
select = select.find_also(Entity, super::fruit::Entity)
60+
select = select.find_also(Entity, super::fruit::Entity);
6161
}
6262

6363
let mut cakes = Vec::new();

0 commit comments

Comments
 (0)