diff --git a/scylla/src/connection/connection.rs b/scylla/src/connection/connection.rs index a8181b39b8..cfd70d6b98 100644 --- a/scylla/src/connection/connection.rs +++ b/scylla/src/connection/connection.rs @@ -1265,7 +1265,7 @@ impl Connection { /// This interface allows to deal with such cases, by allowing to translate an address as sent /// by a ScyllaDB node to another address to be used by the driver for connection. /// -/// Please note that the "known nodes" addresses provided while creating the [`Session`] +/// Please note that the "known nodes" addresses provided while creating the [`crate::session::Session`] /// instance are not translated, only IP address retrieved from or sent by Cassandra nodes /// to the driver are. #[async_trait] diff --git a/scylla/src/session/session.rs b/scylla/src/session/session.rs index 93748b407a..058ea9e580 100644 --- a/scylla/src/session/session.rs +++ b/scylla/src/session/session.rs @@ -345,7 +345,7 @@ pub(crate) enum RunQueryResult { impl Session { /// Estabilishes a CQL session with the database /// - /// Usually it's easier to use [SessionBuilder](crate::session_builder::SessionBuilder) + /// Usually it's easier to use [SessionBuilder](crate::session::SessionBuilder) /// instead of calling `Session::connect` directly, because it's more convenient. /// # Arguments /// * `config` - Connection configuration - known nodes, Compression, etc. diff --git a/scylla/src/session/session_builder.rs b/scylla/src/session/session_builder.rs index 643dd16253..71f9dbd72f 100644 --- a/scylla/src/session/session_builder.rs +++ b/scylla/src/session/session_builder.rs @@ -809,7 +809,7 @@ impl GenericSessionBuilder { self } - /// Set the number of attempts to fetch [TracingInfo](crate::tracing::TracingInfo) + /// Set the number of attempts to fetch [TracingInfo](crate::execution::tracing::TracingInfo) /// in [`Session::get_tracing_info`]. /// The default is 5 attempts. /// @@ -834,7 +834,7 @@ impl GenericSessionBuilder { self } - /// Set the delay between attempts to fetch [TracingInfo](crate::tracing::TracingInfo) + /// Set the delay between attempts to fetch [TracingInfo](crate::execution::tracing::TracingInfo) /// in [`Session::get_tracing_info`]. /// The default is 3 milliseconds. /// @@ -859,7 +859,7 @@ impl GenericSessionBuilder { self } - /// Set the consistency level of fetching [TracingInfo](crate::tracing::TracingInfo) + /// Set the consistency level of fetching [TracingInfo](crate::execution::tracing::TracingInfo) /// in [`Session::get_tracing_info`]. /// The default is [`Consistency::One`]. ///