diff --git a/src/license.rs b/src/license.rs index 4e7a41b..44391e7 100644 --- a/src/license.rs +++ b/src/license.rs @@ -68,7 +68,7 @@ pub fn copy_from_crate(path: &Path, out_dir: &Path, step: &Step) -> Result<(), f } } None => { - PBAR.step(step, "No LICENSE found in Cargo.toml skipping..."); + PBAR.step(step, "No LICENSE found in Cargo.toml, skipping..."); } }; diff --git a/tests/all/utils/fixture.rs b/tests/all/utils/fixture.rs index 17ca365..51331b6 100644 --- a/tests/all/utils/fixture.rs +++ b/tests/all/utils/fixture.rs @@ -73,7 +73,7 @@ impl Fixture { self.file( "LICENSE-WTFPL", r#" - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + DO WHATEVER YOU WANT TO PUBLIC LICENSE Version 2, December 2004 Copyright (C) 2004 Sam Hocevar @@ -82,10 +82,10 @@ impl Fixture { copies of this license document, and changing it is allowed as long as the name is changed. - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + DO WHATEVER YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - 0. You just DO WHAT THE FUCK YOU WANT TO. + 0. You just DO WHATEVER YOU WANT TO. "#, ) }