Skip to content

Commit

Permalink
Merge pull request scylladb#1046 from wprzytula/appease-clippy
Browse files Browse the repository at this point in the history
codewide: appease clippy again
(cherry picked from commit 34352da)
  • Loading branch information
Lorak-mmk authored and wprzytula committed Aug 22, 2024
1 parent 9864f77 commit 3beb86e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions scylla/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ pub use scylla_cql::macros::IntoUserType;
/// - serialization will succed if suffix of UDT fields is missing. If there are missing fields in the
/// middle it will fail. Note that if "skip_name_checks" is enabled, and the types happen to match,
/// it is possible for serialization to succeed with unexpected result.
///
/// This behavior is the default to support ALTERing UDTs by adding new fields.
/// You can require exact match of fields using `force_exact_match` attribute.
///
Expand Down
4 changes: 2 additions & 2 deletions scylla/src/transport/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ impl Session {
/// instead of calling `Session::connect` directly, because it's more convenient.
/// # Arguments
/// * `config` - Connection configuration - known nodes, Compression, etc.
/// Must contain at least one known node.
/// Must contain at least one known node.
///
/// # Example
/// ```rust
Expand Down Expand Up @@ -1334,7 +1334,7 @@ impl Session {
/// # Arguments
///
/// * `keyspace_name` - keyspace name to use,
/// keyspace names can have up to 48 alphanumeric characters and contain underscores
/// keyspace names can have up to 48 alphanumeric characters and contain underscores
/// * `case_sensitive` - if set to true the generated query will put keyspace name in quotes
/// # Example
/// ```rust
Expand Down

0 comments on commit 3beb86e

Please sign in to comment.