From 92bd43bd4b2b358decc63462e98e856e9f9bfa90 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 31 May 2013 22:34:48 +0000 Subject: [PATCH] Fix comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183052 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/MD5.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Support/MD5.cpp b/lib/Support/MD5.cpp index ce99ab6abc8..4c72cef60b0 100644 --- a/lib/Support/MD5.cpp +++ b/lib/Support/MD5.cpp @@ -183,7 +183,7 @@ MD5::MD5() : a(0x67452301), b(0xefcdab89), c(0x98badcfe), d(0x10325476), hi(0), lo(0) { } -/// Incrementally add \p size of \p data to the hash. +/// Incrementally add the bytes in Data to the hash. void MD5::update(ArrayRef Data) { MD5_u32plus saved_lo; unsigned long used, free; -- 2.34.1