aboutsummaryrefslogtreecommitdiff
path: root/utils/scan-build
diff options
context:
space:
mode:
Diffstat (limited to 'utils/scan-build')
-rwxr-xr-xutils/scan-build4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/scan-build b/utils/scan-build
index 920ba47c0b..0eb798026c 100755
--- a/utils/scan-build
+++ b/utils/scan-build
@@ -125,8 +125,8 @@ sub ComputeDigest {
die "Cannot read $FName" if (! -r $FName);
# Use Digest::MD5. We don't have to be cryptographically secure. We're
- # just looking for duplicate files that come from a non-maliciious source.
- # We use Digest::MD5 becomes it is a standard Perl module that should
+ # just looking for duplicate files that come from a non-malicious source.
+ # We use Digest::MD5 because it is a standard Perl module that should
# come bundled on most systems.
open(FILE, $FName) or die "Cannot open $FName.";