Skip to content

Commit 9d7db0f

Browse files
committed
Fix intradoc links
1 parent c6641f3 commit 9d7db0f

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org).
66

7+
## [0.1.2] - 2022-12-10
8+
9+
- Fix intradoc links.
10+
711
## [0.1.1] - 2022-12-10
812

913
- Fixes to README.
@@ -13,5 +17,6 @@ This project adheres to [Semantic Versioning](https://semver.org).
1317

1418
- Initial release.
1519

20+
[0.1.2]: https://github.com/sunshowers-code/buf-list/releases/tag/0.1.2
1621
[0.1.1]: https://github.com/sunshowers-code/buf-list/releases/tag/0.1.1
1722
[0.1.0]: https://github.com/sunshowers-code/buf-list/releases/tag/0.1.0

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ impl FusedIterator for IntoIter {}
300300

301301
/// A borrowed iterator over chunks in a [`BufList`].
302302
///
303-
/// Returned by [`BufList::chunks`], and by the [`IntoIterator`] implementation for [`&'a BufList`].
303+
/// Returned by [`BufList::iter`], and by the [`IntoIterator`] implementation for `&'a BufList`.
304304
#[derive(Clone, Debug)]
305305
pub struct Iter<'a> {
306306
iter: std::collections::vec_deque::Iter<'a, Bytes>,

0 commit comments

Comments
 (0)