From: Ted Kremenek Date: Sat, 19 Apr 2008 18:07:44 +0000 (+0000) Subject: Fix spelling/grammar in comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ea02e6822fadcda31014c55f58cbc04e24d5abf;p=clang Fix spelling/grammar in comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49955 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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.";