We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 162e7ad commit d7a5eadCopy full SHA for d7a5ead
sync-team/src/crates_io/mod.rs
@@ -271,7 +271,7 @@ impl std::fmt::Display for ConfigDiff {
271
ConfigDiff::Create(config) => {
272
writeln!(
273
f,
274
- " Creating trusted publishing config for krate `{}`",
+ " Creating trusted publishing config for crate `{}`",
275
config.krate.0
276
)?;
277
writeln!(f, " Repo: {}/{}", config.repo_org, config.repo_name)?;
@@ -281,8 +281,8 @@ impl std::fmt::Display for ConfigDiff {
281
ConfigDiff::Delete(config) => {
282
283
284
- " Deleting trusted publishing config with ID {}",
285
- config.id
+ " Deleting trusted publishing config for crate `{}` (ID {})",
+ config.krate, config.id
286
287
288
0 commit comments