Fix typos. (#556)

This commit is contained in:
Bruce Mitchener 2024-08-26 20:55:55 +07:00 committed by GitHub
parent 4cb2552e3a
commit 7bd572b9a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# ARCHITECTURE
**Note - The crate was migrated from the `PoignardAzur/masonry` repository and ported to work with winit. A lot of stuff was changed during that port and all the documentation wasn't updated. some of this might be outdated.**
**Note - The crate was migrated from the `PoignardAzur/masonry` repository and ported to work with winit. A lot of stuff was changed during that port and all the documentation wasn't updated. Some of this might be outdated.**
Masonry is a framework that aims to provide the foundation for Rust GUI libraries.

View File

@ -1,7 +1,7 @@
// Copyright 2020 the Xilem Authors and the Druid Authors
// SPDX-License-Identifier: Apache-2.0
//! This showcase demonstrates how to use the image widget and is
//! This showcase demonstrates how to use the image widget and its
//! properties. You can change the parameters in the GUI to see how
//! everything behaves.

View File

@ -594,7 +594,7 @@ impl TestHarness {
diff_image.save(&diff_path).unwrap();
panic!("Snapshot test '{test_name}' failed: Images are different");
} else {
// Remove the vestigal new and diff images
// Remove the vestigial new and diff images
let _ = std::fs::remove_file(&new_path);
let _ = std::fs::remove_file(&diff_path);
}