Skip to content

Commit 6ce5681

Browse files
committed
fix(fmt): remove trailing spaces
1 parent 7d67be9 commit 6ce5681

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sqlx-core/src/from_row.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ use crate::{error::Error, row::Row};
6565
/// reason), `lowercase`, `UPPERCASE`, `camelCase`, `PascalCase`, `SCREAMING_SNAKE_CASE` and `kebab-case`.
6666
/// The styling of each option is intended to be an example of its behavior.
6767
///
68-
/// Case conversion is handled by the `heck` crate.
68+
/// Case conversion is handled by the `heck` crate.
6969
/// See [its documentation][https://docs.rs/heck/0.5.0/heck/#definition-of-a-word-boundary]
7070
/// for details.
7171
///
72-
/// Note that numbers are *not* considered separate words.
72+
/// Note that numbers are *not* considered separate words.
7373
/// For example, `Foo1` to snake case would be `foo1`, *not* `foo_1`.
7474
/// See [this issue](https://github.com/launchbadge/sqlx/issues/3864) for discussion.
7575
///

sqlx-core/src/types/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ pub use bstr::{BStr, BString};
102102
/// Type definitions are *not* verified against the database at compile-time.
103103
/// The [`query!()`][sqlx::query!] macros have no implicit knowledge of user-defined types.
104104
///
105-
/// When using custom types in query parameters or output columns with `query!()`,
105+
/// When using custom types in query parameters or output columns with `query!()`,
106106
/// the use of [type overrides][sqlx::query!#type-overrides-bind-parameters-postgres-only] is required.
107107
///
108108
/// ```rust,ignore

0 commit comments

Comments
 (0)