tool: fix typos

This commit is contained in:
nikstur 2023-02-24 01:29:15 +01:00
parent ed1676e544
commit 32950b7708
1 changed files with 2 additions and 2 deletions

View File

@ -332,10 +332,10 @@ impl Installer {
/// because they are stored in a HashMap using the destination as the key. Thus, there is only /// because they are stored in a HashMap using the destination as the key. Thus, there is only
/// unique destination paths. /// unique destination paths.
/// ///
/// This enables a two step installaton process where all artifacts across all generations are /// This enables a two step installation process where all artifacts across all generations are
/// first collected and then installed. This deduplication in the collection phase reduces the /// first collected and then installed. This deduplication in the collection phase reduces the
/// number of accesesses and writes to the ESP. More importantly, however, in the second step, all /// number of accesesses and writes to the ESP. More importantly, however, in the second step, all
/// paths on the ESP are uniqely determined and the images can be generated while being sure that /// paths on the ESP are uniquely determined and the images can be generated while being sure that
/// the hashes embedded in them will point to a valid file on the ESP because the file will not be /// the hashes embedded in them will point to a valid file on the ESP because the file will not be
/// overwritten by a later generation. /// overwritten by a later generation.
struct GenerationArtifacts { struct GenerationArtifacts {