Skip to content

Commit cb8c57d

Browse files
committed
chore(ci): Fix previously unknown issue in combiners_showcase example
1 parent 46a0fb8 commit cb8c57d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Run Clippy with pedantic and nursery
4343
run: |
44-
cargo clippy --all-targets --all-features -- \
44+
cargo clippy -p ironbeam --all-targets --all-features -- \
4545
-W clippy::pedantic \
4646
-W clippy::nursery \
4747
-D warnings

examples/combiners_showcase.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ fn main() -> Result<()> {
3636
&pipeline,
3737
transactions
3838
.iter()
39-
.map(|(cat, price)| (cat.to_string(), *price))
39+
.map(|(cat, price)| ((*cat).to_string(), *price))
4040
.collect(),
4141
);
4242

0 commit comments

Comments
 (0)