From 45cee7a3bf47fe919118a6f4ecc0cf5696740172 Mon Sep 17 00:00:00 2001 From: Amanjeev Sethi Date: Thu, 23 Jan 2025 13:04:46 -0500 Subject: [PATCH] Chore: English --- crates/criticalup-cli/tests/cli/doc.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/criticalup-cli/tests/cli/doc.rs b/crates/criticalup-cli/tests/cli/doc.rs index 9a0d18af..9bab301c 100644 --- a/crates/criticalup-cli/tests/cli/doc.rs +++ b/crates/criticalup-cli/tests/cli/doc.rs @@ -21,7 +21,7 @@ async fn show_path_only() { let manifest_path = current_dir.to_str().expect("conversion to str failed"); - // generate the manifest object so we can get the installation id hash + // Generate the manifest object so we can get the installation id hash. let p = ProjectManifest::load(current_dir.as_path()).expect("could not load project manifest"); let id_hash = p.products()[0].installation_id().0; @@ -49,7 +49,7 @@ async fn open_browser() { let manifest_path = current_dir.to_str().expect("conversion to str failed"); - // generate the manifest object so we can get the installation id hash + // Generate the manifest object so we can get the installation id hash. let p = ProjectManifest::load(current_dir.as_path()).expect("could not load project manifest"); let id_hash = p.products()[0].installation_id().0; @@ -74,7 +74,7 @@ async fn error_no_file() { let manifest_path = current_dir.to_str().expect("conversion to str failed"); - // generate the manifest object so we can get the installation id hash + // Generate the manifest object so we can get the installation id hash. let p = ProjectManifest::load(current_dir.as_path()).expect("could not load project manifest"); let id_hash = p.products()[0].installation_id().0; @@ -99,7 +99,7 @@ async fn error_no_package() { let manifest_path = current_dir.to_str().expect("conversion to str failed"); - // generate the manifest object so we can get the installation id hash + // Generate the manifest object so we can get the installation id hash. let p = ProjectManifest::load(current_dir.as_path()).expect("could not load project manifest"); let id_hash = p.products()[0].installation_id().0;