From feb853d46bfd14cd83425eef28236a721af62736 Mon Sep 17 00:00:00 2001 From: muzarski Date: Tue, 30 Jul 2024 10:43:27 +0200 Subject: [PATCH] codewide: appease clippy Fixed the indentation issues in docs. --- scylla-rust-wrapper/src/binding.rs | 4 ++-- scylla-rust-wrapper/src/value.rs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/scylla-rust-wrapper/src/binding.rs b/scylla-rust-wrapper/src/binding.rs index 85809e92..f0941859 100644 --- a/scylla-rust-wrapper/src/binding.rs +++ b/scylla-rust-wrapper/src/binding.rs @@ -348,8 +348,8 @@ macro_rules! invoke_binder_maker_macro_with_type { /// In the function, value will be consumed using `$consume_v_name`. /// * `@name_n` - accepts type and function name, declares this function using `make_name_n_binder` macro. /// In the function, value will be consumed using `$consume_v_name`. -/// There are also 2 helper variants, to accomodate scenarios often encountered in cppdriver (sets of 3 functions, -/// binding the same type by index, name and name_n): +/// There are also 2 helper variants, to accomodate scenarios often encountered in cppdriver (sets of 3 functions, +/// binding the same type by index, name and name_n): /// * `make_binders!(type, fn_idx, fn_name, fn_name_n)` - is equivalent to: /// ``` /// make_binders!(@index type, fn_idx); diff --git a/scylla-rust-wrapper/src/value.rs b/scylla-rust-wrapper/src/value.rs index 8ea266e1..928f58d3 100644 --- a/scylla-rust-wrapper/src/value.rs +++ b/scylla-rust-wrapper/src/value.rs @@ -23,6 +23,7 @@ use uuid::Uuid; /// - time /// - counter /// - timestamp +/// /// There is no such method as `cass_statement_bind_counter`, and so /// we need to serialize the counter value using `CassCqlValue::BigInt`. #[derive(Clone, Debug, PartialEq)]