diff --git a/scripts/get b/scripts/get
index aabdedc6866551a4a0af0e4a42d5b4aa78563fa0..a52a0a9a19a8b425a57f325d228f56bf180140e9 100755
--- a/scripts/get
+++ b/scripts/get
@@ -64,7 +64,7 @@ verifySupported() {
 
 # checkLatestVersion checks the latest available version.
 checkLatestVersion() {
-  # Use the GitHub API to find the latest version for this project.
+  # Use the GitHub releases webpage for the project to find the latest version for this project.
   local latest_url="https://github.com/kubernetes/helm/releases/latest"
   if type "curl" > /dev/null; then
     TAG=$(curl -SsL $latest_url | awk '/\/tag\//' | head -n 1 | cut -d '"' -f 2 | awk '{n=split($NF,a,"/");print a[n]}')