From 20f48f73385d1a159a9c412e35181e2b97e8cf2a Mon Sep 17 00:00:00 2001 From: Andre Hartmann Date: Mon, 9 Sep 2024 20:48:10 +0200 Subject: [PATCH] VCS: Replace "SHA1" with "hash" in comments Change-Id: If487028d620e360979ed5132a87f54650342f3e8 Reviewed-by: Orgad Shaneh --- src/plugins/vcsbase/vcsbaseclient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/vcsbase/vcsbaseclient.cpp b/src/plugins/vcsbase/vcsbaseclient.cpp index 1ce9e6d5a86..b3beeefc086 100644 --- a/src/plugins/vcsbase/vcsbaseclient.cpp +++ b/src/plugins/vcsbase/vcsbaseclient.cpp @@ -157,7 +157,7 @@ void VcsBaseClientImpl::annotateRevisionRequested(const FilePath &workingDirecto { QString changeCopy = change; // This might be invoked with a verbose revision description - // "SHA1 author subject" from the annotation context menu. Strip the rest. + // "hash author subject" from the annotation context menu. Strip the rest. const int blankPos = changeCopy.indexOf(QLatin1Char(' ')); if (blankPos != -1) changeCopy.truncate(blankPos);