summaryrefslogtreecommitdiff
path: root/modarith.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-08-11 22:37:15 -0400
committerJeffrey Walton <noloader@gmail.com>2019-08-11 22:37:15 -0400
commit2d6895acb4fed3e674844a9aa1741e2869a5c084 (patch)
tree8200ad514ecb0aa1923dca79fe096cd8d346694a /modarith.h
parent247418eec07492f11a4e4f08470f15e0e3128853 (diff)
downloadcryptopp-git-2d6895acb4fed3e674844a9aa1741e2869a5c084.tar.gz
Update documentation
Diffstat (limited to 'modarith.h')
-rw-r--r--modarith.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modarith.h b/modarith.h
index bd68f012..84ceba57 100644
--- a/modarith.h
+++ b/modarith.h
@@ -33,9 +33,9 @@ CRYPTOPP_DLL_TEMPLATE_CLASS AbstractEuclideanDomain<Integer>;
/// only one such data member for holding results, you should use the
/// class like this:
/// <pre> abcd = group.Add(a, group.Add(b, group.Add(c,d));</pre>
-/// The following code will produce incorrect results:
+/// The following code will produce <i>incorrect</i> results:
/// <pre> abcd = group.Add(group.Add(a,b), group.Add(c,d));</pre>
-/// \details If a ModularArithmetic is copied or assigned the modulus
+/// \details If a ModularArithmetic() is copied or assigned the modulus
/// is copied, but not the internal data members. The internal data
/// members are undefined after copy or assignment.
/// \sa <A HREF="https://cryptopp.com/wiki/Integer">Integer</A> on the