From fa277355e7e34560d16508bc2ae755c37f83be4a Mon Sep 17 00:00:00 2001 From: baixuyewu Date: Mon, 11 Nov 2024 11:00:17 +0800 Subject: [PATCH] fix: fixed some spelling errors --- modules/client/profile/profile.go | 2 +- tools/bisection_analysis/src/main.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/client/profile/profile.go b/modules/client/profile/profile.go index 7f9e0fcb..e8138179 100644 --- a/modules/client/profile/profile.go +++ b/modules/client/profile/profile.go @@ -36,7 +36,7 @@ var profileCommand = cli.Command{ UsageText: "atune-adm profile [profile]", Description: func() string { desc := ` - 1. active the specified profile,for example,avtive the idle profile. + 1. active the specified profile,for example,active the idle profile. example: atune-adm profile idle ` return desc }(), diff --git a/tools/bisection_analysis/src/main.py b/tools/bisection_analysis/src/main.py index dc672441..204c1272 100644 --- a/tools/bisection_analysis/src/main.py +++ b/tools/bisection_analysis/src/main.py @@ -108,11 +108,11 @@ def download_and_setup_demo_mode(): # Check and create the project directory os.makedirs(os.path.dirname(project_path), exist_ok=True) - # Find the git executable dynamiclly + # Find the git executable dynamically git_executable = shutil.which("git") if git_executable is None: raise Exception( - "Git executable not found. Please make sure git is intalled and in your system's PATH.") + "Git executable not found. Please make sure git is installed and in your system's PATH.") if os.path.exists(project_path): # FFmpeg directory exists, checkout master branch and pull the latest changes -- Gitee