Skip to content

Commit a12f95f

Browse files
authored
Merge pull request diesel-rs#3118 from hasezoey/fix_derives_codeinline
Fix missing "`" in diesel_derives for "derive_insertable"
2 parents f66844d + 5003161 commit a12f95f

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)