Skip to content

Commit 5003161

Browse files
committed
Fix missing "`" in diesel_derives for "derive_insertable"
1 parent f66844d commit 5003161

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

diesel_derives/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ pub fn derive_identifiable(input: TokenStream) -> TokenStream {
300300
/// is insertable into. The path is relative to the current module.
301301
/// If this attribute is not used, the type name converted to
302302
/// `snake_case` with an added `s` is used as table name
303-
/// * `#[diesel(treat_none_as_default_value = false)], specifies that `None` values
303+
/// * `#[diesel(treat_none_as_default_value = false)]`, specifies that `None` values
304304
/// should be converted to `NULL` values on SQL side instead of being treated as `DEFAULT`
305305
/// value primitive. *Note*: This option may control if your query is stored in the
306306
/// prepared statement cache or not*

0 commit comments

Comments
 (0)