Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
* Fix doc typo
  • Loading branch information
alexheretic committed Apr 25, 2020
1 parent 43960c9 commit 929eef7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spin_sleep"
version = "0.3.7"
version = "1.0.0"
authors = ["Alex Butler <[email protected]>"]
edition = "2018"
description = "Accurate sleeping. Only use native sleep as far as it can be trusted, then spin."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ thread::sleep to wait the bulk of a sleep time, and spin the final section to gu
accuracy.

### SpinSleeper
Simplist usage with default native accuracy is a drop in replacement for `thread::sleep`.
Simplest usage with default native accuracy is a drop in replacement for `thread::sleep`.
```rust
spin_sleep::sleep(Duration::new(1, 12_550_000));
```
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//!
//! # Examples
//!
//! Simplist usage with default native accuracy is a drop in replacement for `thread::sleep`.
//! Simplest usage with default native accuracy is a drop in replacement for `thread::sleep`.
//! ```no_run
//! # use std::time::Duration;
//! spin_sleep::sleep(Duration::new(1, 12_550_000));
Expand Down

0 comments on commit 929eef7

Please sign in to comment.