diff --git a/src/query/insert.rs b/src/query/insert.rs index 57e05fb4..5b41b187 100644 --- a/src/query/insert.rs +++ b/src/query/insert.rs @@ -227,15 +227,15 @@ where } /// Set ON CONFLICT do nothing, but with MySQL specific polyfill. - /// + /// /// ``` /// use sea_orm::{entity::*, query::*, sea_query::OnConflict, tests_cfg::cake, DbBackend}; - /// + /// /// let orange = cake::ActiveModel { /// id: ActiveValue::set(2), /// name: ActiveValue::set("Orange".to_owned()), /// }; - /// + /// /// assert_eq!( /// cake::Entity::insert(orange.clone()) /// .on_conflict_do_nothing()