Skip to content

Commit 18d966b

Browse files
committed
🔧 Fixed typos
1 parent d814c65 commit 18d966b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "console-utils"
3-
version = "1.5.4"
3+
version = "1.5.5"
44
edition = "2021"
55
authors = ["Nils Wrenger <[email protected]>"]
66
description = "Simple CLI Input and Control Utilities"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use Console Utils in your Rust project, you can add the following dependency
1717

1818
```toml
1919
[dependencies]
20-
console-utils = "1.5.4"
20+
console-utils = "1.5.5"
2121
```
2222

2323
After adding the dependency, you can import the modules you need in your Rust code. For example:
@@ -30,7 +30,7 @@ use console_utils::control::{flush, clear_line};
3030
## Example
3131

3232
```rust
33-
use console_utils::input::{input, select, spinner, SpinnerType};
33+
use console_utils::{input::{input, spinner, SpinnerType, select, reveal}, control::clear_line};
3434

3535
fn main() {
3636
// Read user input as a string

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//!
99
//! ```toml
1010
//! [dependencies]
11-
//! console-utils = "1.5.4"
11+
//! console-utils = "1.5.5"
1212
//! ```
1313
//!
1414
//! After adding the dependency, you can import the modules you need in your Rust code. For example:

src/read.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub fn read_key() -> Option<Key> {
5959
/// # Windows Module
6060
///
6161
/// The `windows` module contains Windows-specific implementation details for reading
62-
/// keyboard input. It utilizes the `windows` crate to interact with Windows Console API.
62+
/// keyboard input. It utilizes the `windows-sys` crate to interact with Windows Console API.
6363
#[cfg(windows)]
6464
pub mod windows {
6565
use std::io::{self, Read};

0 commit comments

Comments
 (0)