Skip to content

Commit

Permalink
Changed a message
Browse files Browse the repository at this point in the history
  • Loading branch information
kitao committed Oct 20, 2024
1 parent 8ad75ae commit bf45f34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/pyxel-engine/src/resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ impl Pyxel {
.join(Self::make_dir_name(app_name));
if !app_data_dir.exists() {
fs::create_dir_all(&app_data_dir).unwrap();
println!("created directory: '{}'", app_data_dir.to_string_lossy());
println!("created '{}'", app_data_dir.to_string_lossy());
}
let mut app_data_dir = app_data_dir.to_string_lossy().to_string();
if !app_data_dir.ends_with(MAIN_SEPARATOR) {
Expand Down

0 comments on commit bf45f34

Please sign in to comment.