@@ -27,7 +27,7 @@ pub trait PgExpressionMethods: Expression + Sized {
2727 /// assert_eq!(Ok(1), not_distinct.first(connection));
2828 /// # }
2929 /// ```
30- #[ allow( clippy:: clippy :: wrong_self_convention) ] // This is named after the sql operator
30+ #[ allow( clippy:: wrong_self_convention) ] // This is named after the sql operator
3131 fn is_not_distinct_from < T > ( self , other : T ) -> dsl:: IsNotDistinctFrom < Self , T >
3232 where
3333 Self :: SqlType : SqlType ,
@@ -55,7 +55,7 @@ pub trait PgExpressionMethods: Expression + Sized {
5555 /// assert_eq!(Ok(1), not_distinct.first(connection));
5656 /// # }
5757 /// ```
58- #[ allow( clippy:: clippy :: wrong_self_convention) ] // This is named after the sql operator
58+ #[ allow( clippy:: wrong_self_convention) ] // This is named after the sql operator
5959 fn is_distinct_from < T > ( self , other : T ) -> dsl:: IsDistinctFrom < Self , T >
6060 where
6161 Self :: SqlType : SqlType ,
@@ -292,7 +292,7 @@ pub trait PgArrayExpressionMethods: Expression + Sized {
292292 /// # Ok(())
293293 /// # }
294294 /// ```
295- #[ allow( clippy:: clippy :: wrong_self_convention) ] // This is named after the sql operator
295+ #[ allow( clippy:: wrong_self_convention) ] // This is named after the sql operator
296296 fn is_contained_by < T > ( self , other : T ) -> dsl:: IsContainedBy < Self , T >
297297 where
298298 Self :: SqlType : SqlType ,
@@ -870,7 +870,7 @@ pub trait PgNetExpressionMethods: Expression + Sized {
870870 /// # Ok(())
871871 /// # }
872872 /// ```
873- #[ allow( clippy:: clippy :: wrong_self_convention) ] // This is named after the sql operator
873+ #[ allow( clippy:: wrong_self_convention) ] // This is named after the sql operator
874874 fn is_contained_by < T > ( self , other : T ) -> dsl:: IsContainedByNet < Self , T >
875875 where
876876 T : AsExpression < Inet > ,
@@ -928,7 +928,7 @@ pub trait PgNetExpressionMethods: Expression + Sized {
928928 /// # Ok(())
929929 /// # }
930930 /// ```
931- #[ allow( clippy:: clippy :: wrong_self_convention) ] // This is named after the sql operator
931+ #[ allow( clippy:: wrong_self_convention) ] // This is named after the sql operator
932932 fn is_contained_by_or_eq < T > ( self , other : T ) -> dsl:: IsContainedByNetLoose < Self , T >
933933 where
934934 T : AsExpression < Inet > ,
0 commit comments