diff --git a/modules/client/profile/profile.go b/modules/client/profile/profile.go index 7f9e0fcb5805d6f8cb5dc6362b9aa988a9db376c..e8138179af68c2b192822703cd409124c2efb8c6 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 dc672441263d790c7074df5679712a034315b6e3..204c1272417283395c0eefbbdf29c86d1a1a6b74 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