Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit cf69a08

Browse files
committed
fix(cmserve): feedback example printed a result
1 parent cbddcd0 commit cf69a08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bins/cmserve.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ fn example_feedbacks() {
108108
for f in feedbacks {
109109
println!(
110110
"{}",
111-
serde_json::to_string(&JsonUI::format_feedback(f)).unwrap()
111+
serde_json::to_string(&JsonUI::format_feedback(f).unwrap()).unwrap()
112112
)
113113
}
114114
}

0 commit comments

Comments
 (0)