diff options
Diffstat (limited to 'Doc/lib/libmd5.tex')
-rw-r--r-- | Doc/lib/libmd5.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libmd5.tex b/Doc/lib/libmd5.tex index f471bae..702b2bb 100644 --- a/Doc/lib/libmd5.tex +++ b/Doc/lib/libmd5.tex @@ -50,7 +50,7 @@ An md5 object has the following methods: \begin{methoddesc}[md5]{update}{arg} Update the md5 object with the string \var{arg}. Repeated calls are equivalent to a single call with the concatenation of all the -arguments, i.e.\ \code{m.update(a); m.update(b)} is equivalent to +arguments: \code{m.update(a); m.update(b)} is equivalent to \code{m.update(a+b)}. \end{methoddesc} |