diff --git a/gix/src/diff.rs b/gix/src/diff.rs index bfe3feb0635..73274134657 100644 --- a/gix/src/diff.rs +++ b/gix/src/diff.rs @@ -100,12 +100,12 @@ mod utils { .into()) } - /// Return a low-level utility to efficiently prepare a the blob-level diff operation between two resources, + /// Return a low-level utility to efficiently prepare a blob-level diff operation between two resources, /// and cache these diffable versions so that matrix-like MxN diffs are efficient. /// /// `repo` is used to obtain the needed configuration values. /// `mode` determines how the diffable files will look like, and also how fast, in average, these conversions are. - /// `attr_stack` is for accessing `.gitattributes` for knowing how to apply filters. Noow that it's typically adjusted based on the + /// `attr_stack` is for accessing `.gitattributes` for knowing how to apply filters. Know that it's typically adjusted based on the /// `roots` - if there are no worktree roots, `.gitattributes` are also not usually read from worktrees. /// `roots` provide information about where to get diffable data from, so source and destination can either be sourced from /// a worktree, or from the object database, or both.