From c3114fa380d80e7268e14d631b08511b2ebf58ec Mon Sep 17 00:00:00 2001 From: Fritz Rehde Date: Mon, 30 Oct 2023 23:25:28 +0100 Subject: [PATCH] Fixed typos (#2524) --- crates/typst-docs/src/model.rs | 2 +- crates/typst-library/src/layout/par.rs | 2 +- crates/typst-library/src/layout/spacing.rs | 2 +- crates/typst-library/src/meta/figure.rs | 2 +- crates/typst-library/src/text/quote.rs | 6 +++--- crates/typst-library/src/visualize/image.rs | 2 +- crates/typst-macros/src/func.rs | 2 +- crates/typst-syntax/src/node.rs | 2 +- crates/typst/src/diag.rs | 6 +++--- crates/typst/src/eval/mod.rs | 2 +- crates/typst/src/model/content.rs | 4 ++-- docs/guides/guide-for-latex-users.md | 4 ++-- tests/ref/layout/pagebreak-parity.png | Bin 4860 -> 4906 bytes tests/typ/layout/pagebreak-parity.typ | 2 +- 14 files changed, 19 insertions(+), 19 deletions(-) diff --git a/crates/typst-docs/src/model.rs b/crates/typst-docs/src/model.rs index 46d979a27..580ae0d3c 100644 --- a/crates/typst-docs/src/model.rs +++ b/crates/typst-docs/src/model.rs @@ -88,7 +88,7 @@ pub struct FuncModel { pub element: bool, pub details: Html, /// This example is only for nested function models. Others can have - /// their example directly in their detals. + /// their example directly in their details. pub example: Option, #[serde(rename = "self")] pub self_: bool, diff --git a/crates/typst-library/src/layout/par.rs b/crates/typst-library/src/layout/par.rs index cfc204164..10f78ef2a 100644 --- a/crates/typst-library/src/layout/par.rs +++ b/crates/typst-library/src/layout/par.rs @@ -808,7 +808,7 @@ fn shape_range<'a>( let mut cursor = range.start; // Group by embedding level and script. If the text's script is explicitly - // set (rather than inferred from the glpyhs), we keep the script at an + // set (rather than inferred from the glyphs), we keep the script at an // unchanging `Script::Unknown` so that only level changes cause breaks. for i in range.clone() { if !bidi.text.is_char_boundary(i) { diff --git a/crates/typst-library/src/layout/spacing.rs b/crates/typst-library/src/layout/spacing.rs index cf69f6d90..9af542372 100644 --- a/crates/typst-library/src/layout/spacing.rs +++ b/crates/typst-library/src/layout/spacing.rs @@ -31,7 +31,7 @@ pub struct HElem { /// next to weak spacing, you can explicitly write `[#" "]` (for a normal /// space) or `[~]` (for a non-breaking space). The latter can be useful to /// create a construct that always attaches to the preceding word with one - /// non-breaking space, independently of wether a markup space existed in + /// non-breaking space, independently of whether a markup space existed in /// front or not. /// /// ```example diff --git a/crates/typst-library/src/meta/figure.rs b/crates/typst-library/src/meta/figure.rs index 0a02df570..bed2071a0 100644 --- a/crates/typst-library/src/meta/figure.rs +++ b/crates/typst-library/src/meta/figure.rs @@ -61,7 +61,7 @@ use crate::visualize::ImageElem; /// breakable and non-breakable blocks. /// /// # Caption customization -/// You can modify the apperance of the figure's caption with its associated +/// You can modify the appearance of the figure's caption with its associated /// [`caption`]($figure.caption) function. In the example below, we emphasize /// all captions: /// diff --git a/crates/typst-library/src/text/quote.rs b/crates/typst-library/src/text/quote.rs index 13a954365..01d941144 100644 --- a/crates/typst-library/src/text/quote.rs +++ b/crates/typst-library/src/text/quote.rs @@ -8,7 +8,7 @@ use crate::prelude::*; /// # Example /// ```example /// Plato is often misquoted as the author of #quote[I know that I know -/// nothing], however, this is a derivation form his orginal quote: +/// nothing], however, this is a derivation form his original quote: /// #set quote(block: true) /// #quote(attribution: [Plato])[ /// ... ἔοικα γοῦν τούτου γε σμικρῷ τινι αὐτῷ τούτῳ σοφώτερος εἶναι, ὅτι @@ -92,7 +92,7 @@ pub struct QuoteElem { /// ``` /// /// Note that bilbiography styles which do not include the author in the - /// citation (label, numberic and notes) currently produce attributions such + /// citation (label, numeric and notes) currently produce attributions such /// as `[---#super[1]]` or `[--- [1]]`, this will be fixed soon with CSL /// support. In the mean time you can simply cite yourself: /// ```example @@ -161,7 +161,7 @@ impl Show for QuoteElem { // TODO: these should use the citation-format attribute, once CSL // is implemented and retrieve the authors for non-author formats - // themeselves, see: + // themselves, see: // - https://github.com/typst/typst/pull/2252#issuecomment-1741146989 // - https://github.com/typst/typst/pull/2252#issuecomment-1744634132 Ok(match bib.style(styles) { diff --git a/crates/typst-library/src/visualize/image.rs b/crates/typst-library/src/visualize/image.rs index 05a9c352f..931e38c63 100644 --- a/crates/typst-library/src/visualize/image.rs +++ b/crates/typst-library/src/visualize/image.rs @@ -128,7 +128,7 @@ impl Layout for ImageElem { styles: StyleChain, regions: Regions, ) -> SourceResult { - // Take the format that was explicitly defined, or parse the extention, + // Take the format that was explicitly defined, or parse the extension, // or try to detect the format. let data = self.data(); let format = match self.format(styles) { diff --git a/crates/typst-macros/src/func.rs b/crates/typst-macros/src/func.rs index b67fb9094..916cf4195 100644 --- a/crates/typst-macros/src/func.rs +++ b/crates/typst-macros/src/func.rs @@ -119,7 +119,7 @@ fn parse(stream: TokenStream, item: &syn::ItemFn) -> Result { }) } -/// Parse details about a functino parameter. +/// Parse details about a function parameter. fn parse_param( special: &mut SpecialParams, params: &mut Vec, diff --git a/crates/typst-syntax/src/node.rs b/crates/typst-syntax/src/node.rs index 9b73dd7f0..d9c80a244 100644 --- a/crates/typst-syntax/src/node.rs +++ b/crates/typst-syntax/src/node.rs @@ -650,7 +650,7 @@ pub struct SyntaxError { pub span: Span, /// The error message. pub message: EcoString, - /// Additonal hints to the user, indicating how this error could be avoided + /// Additional hints to the user, indicating how this error could be avoided /// or worked around. pub hints: EcoVec, } diff --git a/crates/typst/src/diag.rs b/crates/typst/src/diag.rs index 9342606ec..d55896782 100644 --- a/crates/typst/src/diag.rs +++ b/crates/typst/src/diag.rs @@ -92,7 +92,7 @@ pub struct SourceDiagnostic { pub message: EcoString, /// The trace of function calls leading to the problem. pub trace: EcoVec>, - /// Additonal hints to the user, indicating how this problem could be avoided + /// Additional hints to the user, indicating how this problem could be avoided /// or worked around. pub hints: EcoVec, } @@ -256,7 +256,7 @@ pub type HintedStrResult = Result; pub struct HintedString { /// A diagnostic message describing the problem. pub message: EcoString, - /// Additonal hints to the user, indicating how this error could be avoided + /// Additional hints to the user, indicating how this error could be avoided /// or worked around. pub hints: Vec, } @@ -382,7 +382,7 @@ impl From for EcoString { /// A result type with a package-related error. pub type PackageResult = Result; -/// An error that occured while trying to load a package. +/// An error that occurred while trying to load a package. /// /// Some variants have an optional string can give more details, if available. #[derive(Debug, Clone, Eq, PartialEq, Hash)] diff --git a/crates/typst/src/eval/mod.rs b/crates/typst/src/eval/mod.rs index b527bed1e..3dea512e1 100644 --- a/crates/typst/src/eval/mod.rs +++ b/crates/typst/src/eval/mod.rs @@ -1187,7 +1187,7 @@ impl Eval for ast::FuncCall<'_> { // allowed for functions, types, modules (because they are scopes), // and symbols (because they have modifiers). // - // For dictionaries, it is not allowed because it would be ambigious + // For dictionaries, it is not allowed because it would be ambiguous // (prioritizing associated functions would make an addition of a // new associated function a breaking change and prioritizing fields // would break associated functions for certain dictionaries). diff --git a/crates/typst/src/model/content.rs b/crates/typst/src/model/content.rs index 9205f4d86..c5aa4e58a 100644 --- a/crates/typst/src/model/content.rs +++ b/crates/typst/src/model/content.rs @@ -135,8 +135,8 @@ impl Content { /// Also auto expands sequence of sequences into flat sequence pub fn sequence_recursive_for_each(&self, f: &mut impl FnMut(&Self)) { - if let Some(childs) = self.to_sequence() { - childs.for_each(|c| c.sequence_recursive_for_each(f)); + if let Some(children) = self.to_sequence() { + children.for_each(|c| c.sequence_recursive_for_each(f)); } else { f(self); } diff --git a/docs/guides/guide-for-latex-users.md b/docs/guides/guide-for-latex-users.md index d0fb92cb2..0ac263093 100644 --- a/docs/guides/guide-for-latex-users.md +++ b/docs/guides/guide-for-latex-users.md @@ -486,7 +486,7 @@ $ f(x) = (x + 1) / x $ to include more than one value in a sub- or superscript, enclose their contents in parentheses: `{$x_(a -> epsilon)$}`. -Since variables in math mode do not need to be preprended with a `#` or a `/`, +Since variables in math mode do not need to be prepended with a `#` or a `/`, you can also call functions without these special characters: ```example @@ -545,7 +545,7 @@ The example below - sets wide [margins]($page.margin) - enables [justification]($par.justify), [tighter lines]($par.leading) and [first-line-indent]($par.first-line-indent) -- [sets the font]($text.font) to "New Computer Modern", an OpenType derivate of +- [sets the font]($text.font) to "New Computer Modern", an OpenType derivative of Computer Modern for both text and [code blocks]($raw) - disables paragraph [spacing]($block.spacing) - increases [spacing]($block.spacing) around [headings]($heading) diff --git a/tests/ref/layout/pagebreak-parity.png b/tests/ref/layout/pagebreak-parity.png index 8c05dc92dc6a686bdfd61e289e88cff6fe6507e9..0dbabe7aedba8e9c02032f50ec5fd59a31e0324f 100644 GIT binary patch literal 4906 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 aV%|sPR_fYKefY<3Elo8Y)dFSn=l=sbtY1d} diff --git a/tests/typ/layout/pagebreak-parity.typ b/tests/typ/layout/pagebreak-parity.typ index 1cfbd450e..4dbf723e7 100644 --- a/tests/typ/layout/pagebreak-parity.typ +++ b/tests/typ/layout/pagebreak-parity.typ @@ -12,7 +12,7 @@ Sixth #pagebreak() Seventh #pagebreak(to: "odd") -#page[Nineth] +#page[Ninth] --- #set page(width: auto, height: auto)