Commit 58ae5c20c7b4744edbbcbe38883666b5d6fd85a1

nijtmans 2019-06-13T17:31:04

More doc fixes, texts which no longer were correct due to depreciations

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/doc/bn.tex b/doc/bn.tex
index 17ba3fe..8e1e747 100644
--- a/doc/bn.tex
+++ b/doc/bn.tex
@@ -780,9 +780,9 @@ int mp_count_bits(const mp_int *a);
 
 
 \section{Small Constants}
-Setting mp\_ints to small constants is a relatively common operation.  To accommodate these instances there are two
-small constant assignment functions.  The first function is used to set a single digit constant while the second sets
-an ISO C style ``unsigned long'' constant.  The reason for both functions is efficiency.  Setting a single digit is quick but the
+Setting mp\_ints to small constants is a relatively common operation.  To accommodate these instances there is a
+small constant assignment function.  This function is used to set a single digit constant.
+The reason for this function is efficiency.  Setting a single digit is quick but the
 domain of a digit can change (it's always at least $0 \ldots 127$).
 
 \subsection{Single Digit}