From e31553aab409829fab28509673b94e78ee4ae43e Mon Sep 17 00:00:00 2001 From: Alexander Fedotov Date: Sun, 14 Apr 2024 16:40:08 +0100 Subject: [PATCH] pipeline(build): fix typo --- compiler/hash-pipeline/build.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/hash-pipeline/build.rs b/compiler/hash-pipeline/build.rs index 1f1c2960a..dc28ac7f9 100644 --- a/compiler/hash-pipeline/build.rs +++ b/compiler/hash-pipeline/build.rs @@ -9,7 +9,7 @@ static BUILD_DIR: &str = env!("CARGO_MANIFEST_DIR"); fn main() { inline_stdlib_info(); - inline_compuler_info(); + inline_compiler_info(); } /// Compute the path to the standard library and inline it into the build of @@ -25,9 +25,9 @@ fn inline_stdlib_info() { } /// Compute the version of the compiler and inline it into the build of the -/// compiler. The version incluces the version of the `hash` crate, and the git +/// compiler. The version includes the version of the `hash` crate, and the git /// revision hash of the compiler itself. -fn inline_compuler_info() { +fn inline_compiler_info() { let git_hash = String::from_utf8( std::process::Command::new("git") .args(["rev-parse", "HEAD"])