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)]