Skip to content

Commit 135b297

Browse files
bors[bot]atouchet
andauthored
Merge #569
569: Readme update r=phimuemue a=atouchet Follow-up to #561. Some formatting changes to the Readme and replace the obsolete Travis CI badge with GitHub Actions. Co-authored-by: Alex Touchet <alextouchet@outlook.com>
2 parents 966a513 + bf06457 commit 135b297

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,28 @@
22

33
Extra iterator adaptors, functions and macros.
44

5-
Please read the [API documentation here](https://docs.rs/itertools/)
5+
Please read the [API documentation here](https://docs.rs/itertools/).
66

7-
[![build_status](https://travis-ci.org/rust-itertools/itertools.svg?branch=master)](https://travis-ci.org/rust-itertools/itertools)
7+
[![build_status](https://github.com/rust-itertools/itertools/actions/workflows/ci.yml/badge.svg)](https://github.com/rust-itertools/itertools/actions)
88
[![crates.io](https://img.shields.io/crates/v/itertools.svg)](https://crates.io/crates/itertools)
99

10-
How to use with cargo:
10+
How to use with Cargo:
1111

12-
```
12+
```toml
1313
[dependencies]
1414
itertools = "0.10.0"
1515
```
1616

1717
How to use in your crate:
1818

19-
```
19+
```rust
2020
use itertools::Itertools;
2121
```
2222

2323
## How to contribute
2424

2525
- Fix a bug or implement a new thing
26-
- Include tests for your new feature, preferably a quickcheck test
26+
- Include tests for your new feature, preferably a QuickCheck test
2727
- Make a Pull Request
2828

2929
For new features, please first consider filing a PR to [rust-lang/rust](https://github.com/rust-lang/rust),

0 commit comments

Comments
 (0)