Skip to content

Commit 87e4127

Browse files
committed
Fix notest doc-comments
1 parent 9bd4785 commit 87e4127

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
//! Now open up your `src/main.rs` file and establish a connection to the server while also adding some
4242
//! imports:
4343
//!
44-
//! ```norun
44+
//! ```no_run
4545
//! use skytable::{Connection, Query, Element};
4646
//! fn main() -> std::io::Result<()> {
4747
//! let mut con = Connection::new("127.0.0.1", 2003)?;
@@ -51,7 +51,7 @@
5151
//!
5252
//! Now let's run a `Query`! Change the previous code block to:
5353
//!
54-
//! ```norun
54+
//! ```no_run
5555
//! use skytable::{error, Connection, Query, Element};
5656
//! fn main() -> Result<(), error::Error> {
5757
//! let mut con = Connection::new("127.0.0.1", 2003)?;
@@ -70,7 +70,7 @@
7070
//!
7171
//! ### `SET`ting a key
7272
//!
73-
//! ```norun
73+
//! ```no_run
7474
//! use skytable::actions::Actions;
7575
//! use skytable::sync::Connection;
7676
//!
@@ -82,7 +82,7 @@
8282
//!
8383
//! ### `GET`ting a key
8484
//!
85-
//! ```norun
85+
//! ```no_run
8686
//! use skytable::actions::Actions;
8787
//! use skytable::sync::Connection;
8888
//!
@@ -105,7 +105,7 @@
105105
//! you wanted to `SET` the value of a key called `bindata` to some binary data stored
106106
//! in a `Vec<u8>`. You can achieve this with the `RawString` type:
107107
//!
108-
//! ```norun
108+
//! ```no_run
109109
//! use skytable::actions::Actions;
110110
//! use skytable::sync::Connection;
111111
//! use skytable::types::RawString;

0 commit comments

Comments
 (0)