[ci skip] Fix rustdoc

"impl ToSql for NaiveDateTime" documentation is slightly inconsistent
with behavior #519
This commit is contained in:
gwenn 2019-05-11 13:05:15 +02:00
parent 584d94dcf6
commit 860cf69660

View File

@ -54,7 +54,7 @@ impl FromSql for NaiveTime {
}
/// ISO 8601 combined date and time without timezone =>
/// "YYYY-MM-DD HH:MM:SS.SSS"
/// "YYYY-MM-DDTHH:MM:SS.SSS"
impl ToSql for NaiveDateTime {
fn to_sql(&self) -> Result<ToSqlOutput<'_>> {
let date_str = self.format("%Y-%m-%dT%H:%M:%S%.f").to_string();