chore: fix some typos in comments (#2340)

Signed-off-by: alongdate <alongyear@outlook.com>
This commit is contained in:
alongdate 2024-04-19 21:29:22 +08:00 committed by GitHub
parent 5ce91e1bfc
commit a5b4ceed39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 5 deletions

View file

@ -92,7 +92,7 @@ impl Files {
let paths = match std::fs::read_dir(cur_path) {
Ok(e) => e,
Err(err) => {
let err = format!("An error occured: {err:?}");
let err = format!("An error occurred: {err:?}");
self.err = Some(err);
self.path_stack.pop();
return;

View file

@ -48,7 +48,7 @@ fn Display() -> Element {
#[component]
fn Reset() -> Element {
// Not all write methods are availale on global signals since `write` requires a mutable reference. In these cases,
// Not all write methods are available on global signals since `write` requires a mutable reference. In these cases,
// We can simply pull out the actual signal using the signal() method.
let mut as_signal = use_hook(|| COUNT.signal());

View file

@ -2,7 +2,7 @@
//!
//! This example showcases how to control event bubbling from child to parents.
//!
//! Both web and desktop support bubbling and bubble cancelation.
//! Both web and desktop support bubbling and bubble cancellation.
use dioxus::prelude::*;

View file

@ -1,6 +1,6 @@
//! Read the size of elements using the MountedData struct.
//!
//! Whenever an Element is finally mounted to the Dom, its data is avaiable to be read.
//! Whenever an Element is finally mounted to the Dom, its data is available to be read.
//! These fields can typically only be read asynchronously, since various renderers need to release the main thread to
//! perform layout and painting.

View file

@ -220,7 +220,7 @@ pub fn get_rustls_with_mkcert(web_config: &WebHttpsConfig) -> Result<(String, St
Err(e) => {
match e.kind() {
io::ErrorKind::NotFound => tracing::error!("mkcert is not installed. See https://github.com/FiloSottile/mkcert#installation for installation instructions."),
e => tracing::error!("an error occured while generating mkcert certificates: {}", e.to_string()),
e => tracing::error!("an error occurred while generating mkcert certificates: {}", e.to_string()),
};
return Err("failed to generate mkcert certificates".into());
}