Fix spelling/grammar in comment.

llvm-svn: 49955
This commit is contained in:
Ted Kremenek 2008-04-19 18:07:44 +00:00
parent b0fa31cefb
commit 6267835f57
1 changed files with 2 additions and 2 deletions

View File

@ -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.";