Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'xtask/src/release/changelog.rs')
| -rw-r--r-- | xtask/src/release/changelog.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/release/changelog.rs b/xtask/src/release/changelog.rs index 817863336d..086a4d463e 100644 --- a/xtask/src/release/changelog.rs +++ b/xtask/src/release/changelog.rs @@ -183,5 +183,5 @@ fn parse_title_line(s: &str) -> PrInfo { return PrInfo { message, kind }; } } - PrInfo { kind: PrKind::Other, message: Some(s.to_string()) } + PrInfo { kind: PrKind::Other, message: Some(s.to_owned()) } } |