Skip to content

Commit 4c1f5d0

Browse files
authored
Merge pull request #5 from artichoke/lopopolo/doc-typo-release-1.0.1
Fix a broken sentence in README and crate docs, prepare for v1.0.1 release
2 parents d207f03 + 0050f41 commit 4c1f5d0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "posix-space"
3-
version = "1.0.0" # remember to set `html_root_url` in `src/lib.rs`.
3+
version = "1.0.1" # remember to set `html_root_url` in `src/lib.rs`.
44
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
55
license = "MIT"
66
edition = "2018"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![API trunk](https://img.shields.io/badge/docs-trunk-blue.svg)](https://artichoke.github.io/posix-space/posix_space/)
1010

1111
A small crate which determines if a byte is classified as a space in the POSIX
12-
locale [POSIX.1-2017], chapter 7, [Locale].
12+
locale per [POSIX.1-2017], chapter 7, [Locale].
1313

1414
[posix.1-2017]: https://pubs.opengroup.org/onlinepubs/9699919799/mindex.html
1515
[locale]:
@@ -33,7 +33,7 @@ Add this to your `Cargo.toml`:
3333

3434
```toml
3535
[dependencies]
36-
posix-space = "1.0.0"
36+
posix-space = "1.0.1"
3737
```
3838

3939
Then classify bytes like:

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
#![cfg_attr(docsrs, feature(doc_cfg))]
1818
#![cfg_attr(docsrs, feature(doc_alias))]
1919

20-
//! A small crate which determines if a byte is classified as a space in the POSIX locale
21-
//! [POSIX.1-2017], chapter 7, [Locale].
20+
//! A small crate which determines if a byte is classified as a space in the
21+
//! POSIX locale per [POSIX.1-2017], chapter 7, [Locale].
2222
//!
2323
//! [POSIX.1-2017]: https://pubs.opengroup.org/onlinepubs/9699919799/mindex.html
2424
//! [Locale]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap07.html
@@ -35,7 +35,7 @@
3535
//!
3636
//! [`isspace`]: https://linux.die.net/man/3/isspace
3737
38-
#![doc(html_root_url = "https://docs.rs/posix-space/1.0.0")]
38+
#![doc(html_root_url = "https://docs.rs/posix-space/1.0.1")]
3939
#![no_std]
4040

4141
// Ensure code blocks in README.md compile

0 commit comments

Comments
 (0)