Skip to content

Commit e292187

Browse files
authored
Merge pull request #2175 from Kobzol/tp-diff
Print crate name in deleting TP diff
2 parents 04d0251 + d7a5ead commit e292187

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sync-team/src/crates_io/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ impl std::fmt::Display for ConfigDiff {
271271
ConfigDiff::Create(config) => {
272272
writeln!(
273273
f,
274-
" Creating trusted publishing config for krate `{}`",
274+
" Creating trusted publishing config for crate `{}`",
275275
config.krate.0
276276
)?;
277277
writeln!(f, " Repo: {}/{}", config.repo_org, config.repo_name)?;
@@ -281,8 +281,8 @@ impl std::fmt::Display for ConfigDiff {
281281
ConfigDiff::Delete(config) => {
282282
writeln!(
283283
f,
284-
" Deleting trusted publishing config with ID {}",
285-
config.id
284+
" Deleting trusted publishing config for crate `{}` (ID {})",
285+
config.krate, config.id
286286
)?;
287287
writeln!(
288288
f,

0 commit comments

Comments
 (0)