Skip to content

Commit f291a39

Browse files
committed
changelog
1 parent 0cfcc58 commit f291a39

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
- Add iterators for register/cluster/field arrays
11+
1012
## [v0.31.1] - 2023-11-27
1113

1214
- Fix cluster arrays

src/generate/register.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -920,7 +920,7 @@ pub fn fields(
920920
#reader_ty::new ( #value )
921921
}
922922
#[doc = "Iterator for array of:"]
923-
#[doc = #array_doc]
923+
#[doc = #doc]
924924
#inline
925925
pub fn #name_snake_case_iter(&self) -> impl Iterator<Item = #reader_ty> + '_ {
926926
(0..#dim).map(|n| #reader_ty::new ( #value ))

0 commit comments

Comments
 (0)