Skip to content

Commit 4c08f7f

Browse files
committed
docs mainpage: minor fixes
1 parent 647c86f commit 4c08f7f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scylla/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//!
44
//! # Documentation book
55
//! The best source to learn about this driver is the [documentation book](https://rust-driver.docs.scylladb.com/).\
6-
//! This page contains mainly API documentation
6+
//! This page contains mainly API documentation.
77
//!
88
//! # Other documentation
99
//! * [Documentation book](https://rust-driver.docs.scylladb.com/)
@@ -13,7 +13,7 @@
1313
//!
1414
//! # Driver overview
1515
//! ### Connecting
16-
//! All driver activity revolves around the [Session](crate::client::session::Session)\
16+
//! All driver activity revolves around the [Session](crate::client::session::Session).\
1717
//! `Session` is created by specifying a few known nodes and connecting to them:
1818
//!
1919
//! ```rust,no_run
@@ -44,7 +44,7 @@
4444
//! * [Prepared paged](crate::client::session::Session::execute_iter)
4545
//! * [Batch](crate::client::session::Session::batch)
4646
//!
47-
//! To specify options for a single query create the query object and configure it:
47+
//! To specify options for a single query, create the corresponding object and configure it:
4848
//! * For simple: [`Statement`](crate::statement::unprepared::Statement)
4949
//! * For prepared: [`PreparedStatement`](crate::statement::prepared::PreparedStatement)
5050
//! * For batch: [`Batch`](crate::statement::batch::Batch)
@@ -74,7 +74,7 @@
7474
//! # use std::error::Error;
7575
//! # async fn check_only_compiles(session: &Session) -> Result<(), Box<dyn Error>> {
7676
//!
77-
//! // Read rows containing an int and text
77+
//! // Read rows containing an int and text.
7878
//! // Keep in mind that all results come in one response (no paging is done!),
7979
//! // so the memory footprint and latency may be huge!
8080
//! // To prevent that, use `Session::query_iter` or `Session::query_single_page`.
@@ -90,7 +90,7 @@
9090
//! # Ok(())
9191
//! # }
9292
//! ```
93-
//! See the [book](https://rust-driver.docs.scylladb.com/stable/statements/result.html) for more receiving methods
93+
//! See the [book](https://rust-driver.docs.scylladb.com/stable/statements/result.html) for more receiving methods.
9494
9595
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
9696

0 commit comments

Comments
 (0)