Skip to content

Commit a33134e

Browse files
bors[bot]atouchet
andauthored
Merge #543
543: Update some links and some spelling/capitalization fixes r=jswrenn a=atouchet Co-authored-by: Alex Touchet <[email protected]>
2 parents eedea19 + 9cfca9d commit a33134e

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
## 0.5.1
193193
- Workaround module/function name clash that made racer crash on completing itertools. Only internal changes needed.
194194
## 0.5.0
195-
- [Release announcement](http://bluss.github.io/rust/2016/09/26/itertools-0.5.0/)
195+
- [Release announcement](https://bluss.github.io/rust/2016/09/26/itertools-0.5.0/)
196196
- Renamed:
197197
- `combinations` is now `tuple_combinations`
198198
- `combinations_n` to `combinations`
@@ -246,7 +246,7 @@
246246
## 0.4.15
247247
- Fixup on top of the workaround in 0.4.14. A function in `itertools::free` was removed by mistake and now it is added back again.
248248
## 0.4.14
249-
- Workaround an upstream regression in a rust nightly build that broke compilation of of `itertools::free::{interleave, merge}`
249+
- Workaround an upstream regression in a Rust nightly build that broke compilation of of `itertools::free::{interleave, merge}`
250250
## 0.4.13
251251
- Add `.minmax()` and `.minmax_by_key()`, iterator methods for finding both minimum and maximum in one scan.
252252
- Add `.format_default()`, a simpler version of `.format()` (lazy formatting for iterators).
@@ -312,9 +312,9 @@
312312
## 0.3.19
313313
- Added `.group_by_lazy()`, a possibly nonallocating group by
314314
- Added `.format()`, a nonallocating formatting helper for iterators
315-
- Remove uses of `RandomAccessIterator` since it has been deprecated in rust.
315+
- Remove uses of `RandomAccessIterator` since it has been deprecated in Rust.
316316
## 0.3.17
317-
- Added (adopted) `Unfold` from rust
317+
- Added (adopted) `Unfold` from Rust
318318
## 0.3.16
319319
- Added adaptors `.unique()`, `.unique_by()`
320320
## 0.3.15

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "itertools"
33
version = "0.10.0"
44

55
license = "MIT/Apache-2.0"
6-
repository = "https://github.com/bluss/rust-itertools"
6+
repository = "https://github.com/rust-itertools/itertools"
77
documentation = "https://docs.rs/itertools/"
88
authors = ["bluss"]
99

@@ -27,8 +27,8 @@ either = { version = "1.0", default-features = false }
2727

2828
[dev-dependencies]
2929
rand = "0.7"
30-
criterion = "=0" # TODO how could this work with our minimum supported rust version?
31-
paste = "1.0.0" # Used in test_std to instanciate generic tests
30+
criterion = "=0" # TODO how could this work with our minimum supported Rust version?
31+
paste = "1.0.0" # Used in test_std to instantiate generic tests
3232

3333
[dev-dependencies.quickcheck]
3434
version = "0.9"

README.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ __ https://docs.rs/itertools/
1313
.. |build_status| image:: https://travis-ci.org/rust-itertools/itertools.svg?branch=master
1414
.. _build_status: https://travis-ci.org/rust-itertools/itertools
1515

16-
.. |crates| image:: http://meritbadge.herokuapp.com/itertools
16+
.. |crates| image:: https://meritbadge.herokuapp.com/itertools
1717
.. _crates: https://crates.io/crates/itertools
1818

1919
How to use with cargo:
@@ -36,7 +36,7 @@ How to contribute
3636
- Include tests for your new feature, preferably a quickcheck test
3737
- Make a Pull Request
3838

39-
For new features, please first consider filing a PR to `rust-lang/rust <https://github.com/rust-lang/rust/>`_,
39+
For new features, please first consider filing a PR to `rust-lang/rust <https://github.com/rust-lang/rust>`_,
4040
adding your new feature to the `Iterator` trait of the standard library, if you believe it is reasonable.
4141
If it isn't accepted there, proposing it for inclusion in ``itertools`` is a good idea.
4242
The reason for doing is this is so that we avoid future breakage as with ``.flatten()``.
@@ -49,7 +49,7 @@ License
4949
Dual-licensed to be compatible with the Rust project.
5050

5151
Licensed under the Apache License, Version 2.0
52-
http://www.apache.org/licenses/LICENSE-2.0 or the MIT license
53-
http://opensource.org/licenses/MIT, at your
52+
https://www.apache.org/licenses/LICENSE-2.0 or the MIT license
53+
https://opensource.org/licenses/MIT, at your
5454
option. This file may not be copied, modified, or distributed
5555
except according to those terms.

src/adaptors/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Licensed under the Apache License, Version 2.0
2-
//! <http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3-
//! <http://opensource.org/licenses/MIT>, at your
2+
//! <https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3+
//! <https://opensource.org/licenses/MIT>, at your
44
//! option. This file may not be copied, modified, or distributed
55
//! except according to those terms.
66

tests/test_core.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Licensed under the Apache License, Version 2.0
2-
//! http://www.apache.org/licenses/LICENSE-2.0 or the MIT license
3-
//! http://opensource.org/licenses/MIT, at your
2+
//! https://www.apache.org/licenses/LICENSE-2.0 or the MIT license
3+
//! https://opensource.org/licenses/MIT, at your
44
//! option. This file may not be copied, modified, or distributed
55
//! except according to those terms.
66
#![no_std]

0 commit comments

Comments
 (0)