Skip to content

Commit 87c41c5

Browse files
committed
Fix case missed by cargo --fix
1 parent 47db8cc commit 87c41c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

diesel/src/type_impls/primitives.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ impl<DB> FromSql<sql_types::Text, DB> for *const str
138138
where
139139
DB: Backend + for<'a> BinaryRawValue<'a>,
140140
{
141-
default fn from_sql(value: Option<::backend::RawValue<DB>>) -> deserialize::Result<Self> {
141+
default fn from_sql(value: Option<crate::backend::RawValue<DB>>) -> deserialize::Result<Self> {
142142
use std::str;
143143
let value = not_none!(value);
144144
let string = str::from_utf8(DB::as_bytes(value))?;

0 commit comments

Comments
 (0)