From 0facb75e6d2a703dd2e1d02f2d94a8227727f0d9 Mon Sep 17 00:00:00 2001 From: Andrew Voynov <37143421+Andrew15-5@users.noreply.github.com> Date: Tue, 20 Aug 2024 20:12:22 +0500 Subject: [PATCH] Fixed typo in docs for `ProgressSink` (#4785) --- crates/typst-kit/src/download.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/typst-kit/src/download.rs b/crates/typst-kit/src/download.rs index 9aff4dc02..40084e51b 100644 --- a/crates/typst-kit/src/download.rs +++ b/crates/typst-kit/src/download.rs @@ -29,7 +29,7 @@ pub trait Progress { fn print_finish(&mut self, state: &DownloadState); } -/// An implementation of [`Progress`] whth no-op reporting, i.e. reporting +/// An implementation of [`Progress`] with no-op reporting, i.e., reporting /// events are swallowed. pub struct ProgressSink;