Skip to content

Commit c57e46e

Browse files
Update README to use SkyResult in example code (#14)
1 parent d6ca102 commit c57e46e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ Now open up your `src/main.rs` file and establish a connection to the server whi
4242
imports:
4343

4444
```rust
45-
use skytable::{Connection, Query, Element};
46-
fn main() -> std::io::Result<()> {
45+
use skytable::{Connection, Query, Element, SkyResult};
46+
fn main() -> SkyResult<()> {
4747
let mut con = Connection::new("127.0.0.1", 2003)?;
4848
Ok(())
4949
}

0 commit comments

Comments
 (0)