Skip to content

Commit 172b20a

Browse files
authored
fix incorrect type label in TypeNames::mangle_name (#183)
Signed-off-by: Joel Dice <joel.dice@fermyon.com>
1 parent 1068496 commit 172b20a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/summary.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2555,7 +2555,7 @@ impl<'a> TypeNames<'a> {
25552555
}
25562556
TypeDefKind::Future(ty) => {
25572557
format!(
2558-
"stream_{}",
2558+
"future_{}",
25592559
ty.map(|ty| self.mangle_name(ty))
25602560
.unwrap_or_else(|| "unit".into())
25612561
)

0 commit comments

Comments
 (0)