Skip to content

Commit de1ba64

Browse files
committed
Set maximum (non-code) line length of Markdown texts to 80
1 parent 13d35d9 commit de1ba64

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[*.md]
2+
max_line_length = 80

oauth-credentials/README.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,20 @@
1111

1212
## Stability
1313

14-
The goal of `oauth-credentials` is to provide a stable foundation for OAuth implementations.
14+
The goal of `oauth-credentials` is to provide a stable foundation for OAuth
15+
implementations.
1516

16-
The crate is still unstable in the sense of Semantic Versioning. However, we are not planning to
17-
make any breaking change and are going to publish the API as it is as version 1.0.0 using the
18-
[semver trick] unless we find a flaw in the API significant enough to justify a breaking change.
17+
The crate is still unstable in the sense of Semantic Versioning. However, we
18+
are not planning to make any breaking change and are going to publish the API
19+
as it is as version 1.0.0 using the [semver trick] unless we find a flaw in the
20+
API significant enough to justify a breaking change.
1921

2022
[semver trick]: https://github.com/dtolnay/semver-trick
2123
[#5]: https://github.com/tesaguri/oauth1-request-rs/pull/5
2224

2325
While you should not use it as a public dependency of a stable crate yet
24-
(see [C-STABLE] of Rust API Guidelines), it is ready as a public dependency of an unstable crate
25-
and as a private dependency of a stable crate.
26+
(see [C-STABLE] of Rust API Guidelines), it is ready as a public dependency of
27+
an unstable crate and as a private dependency of a stable crate.
2628

2729
[C-STABLE]: https://rust-lang.github.io/api-guidelines/necessities.html#public-dependencies-of-a-stable-crate-are-stable-c-stable
2830

@@ -39,8 +41,9 @@ Feature | MSRV
3941
`serde` | 1.13.0
4042
`alloc` (without `std`) | 1.36.0
4143

42-
Note that if your crate uses the `serde` feature (even if optionally!), it cannot be compiled
43-
directly with Rust 1.7.x and older due to [rust-lang/cargo#3763], but it can somehow be compiled as
44-
a non-root node of a dependency tree.
44+
Note that if your crate uses the `serde` feature (even if optionally!), it
45+
cannot be compiled directly with Rust 1.7.x and older due to
46+
[rust-lang/cargo#3763], but it can somehow be compiled as a non-root node of a
47+
dependency tree.
4548

4649
[rust-lang/cargo#3763]: https://github.com/rust-lang/cargo/issues/3763

0 commit comments

Comments
 (0)