From c64cc76fc037b91d6ea8c1d13481d9d1c662974c Mon Sep 17 00:00:00 2001 From: linghuying <1599935829@qq.com> Date: Thu, 20 Mar 2025 15:37:28 +0800 Subject: [PATCH] chore: fix some typos in comment Signed-off-by: linghuying <1599935829@qq.com> --- deployment/publish-downloads.sh | 2 +- tor/versions.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/publish-downloads.sh b/deployment/publish-downloads.sh index c91200bb..682c613f 100644 --- a/deployment/publish-downloads.sh +++ b/deployment/publish-downloads.sh @@ -8,7 +8,7 @@ if [ $# -lt 3 ]; then fi work_dir=$(realpath $1) # absolute path -web_dir=$(realpath $2) # absoute path +web_dir=$(realpath $2) # absolute path binary_path=$(realpath $3) # relative path to the binary in question, either bin/wahay-TAG or bin/wahay-DATE-COMMIT binary_name=$(basename $binary_path) diff --git a/tor/versions.go b/tor/versions.go index 2f27002d..be622723 100644 --- a/tor/versions.go +++ b/tor/versions.go @@ -6,7 +6,7 @@ import ( "strings" ) -// minSupportedVersion is the Tor minimun supported version +// minSupportedVersion is the Tor minimum supported version const minSupportedVersion = "0.3.2" // Simple utilities to manage version comparisons