Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Using the library you can:
- Interact with process's IO(input/output).

`expectrl` like original `expect` may shine when you're working with interactive applications.
If your application is not interactive you may not find the library the best choiсe.
If your application is not interactive you may not find the library the best choice.

## Usage

Expand All @@ -25,10 +25,10 @@ Add `expectrl` to your Cargo.toml.
```toml
# Cargo.toml
[dependencies]
expectrl = "0.8"
expectrl = "0.9"
```

An example where the program simulates a used interacting with `ftp`.
An example where the program simulates a user interacting with `ftp`.

```rust
use expectrl::{Regex, Eof, Error, Expect};
Expand Down
Loading