mirror of https://github.com/linebender/xilem
Fix typos. (#556)
This commit is contained in:
parent
4cb2552e3a
commit
7bd572b9a3
|
@ -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.
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue