aboutsummaryrefslogtreecommitdiffstats
path: root/doc/libzahls-design.tex
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2016-11-29 23:55:29 +0100
committerMattias Andrée <maandree@kth.se>2016-11-29 23:55:29 +0100
commit781e9d05388539d989e3578ebc7f8a7cd038aeb0 (patch)
tree05939095a7ddc9c5da12b48df2c471bf238da2e3 /doc/libzahls-design.tex
parentmanual: fix truncated sentence (diff)
downloadlibzahl-781e9d05388539d989e3578ebc7f8a7cd038aeb0.tar.gz
libzahl-781e9d05388539d989e3578ebc7f8a7cd038aeb0.tar.bz2
libzahl-781e9d05388539d989e3578ebc7f8a7cd038aeb0.tar.xz
Fix errors in the manual (most of them found by Ivan Zuboff)
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'doc/libzahls-design.tex')
-rw-r--r--doc/libzahls-design.tex8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/libzahls-design.tex b/doc/libzahls-design.tex
index dcc2cb1..b3eb701 100644
--- a/doc/libzahls-design.tex
+++ b/doc/libzahls-design.tex
@@ -155,7 +155,7 @@ allows you do so if you so choose.
The {\tt .sign} member, is either $-1$, 0, or 1,
when the integer is negative, zero, or positive,
-respectively. Whenever, {\tt .sign} is 0, the value
+respectively. Whenever {\tt .sign} is 0, the value
of {\tt .used} and {\tt .chars} are undefined.
{\tt .used} holds to the number of elements used in
@@ -192,7 +192,7 @@ they are not considered input integers. The order
of the input parameters are that of the order you
would write them using mathematical notation, this
also holds true if you include the output parameter
-(as long as there is exactly one output,) for example
+(as long as there is exactly one output), for example
\vspace{1em}
$a \gets b^c \mod d$
@@ -256,7 +256,7 @@ This assumption is not made for non-commutative
functions.
When writting your own functions, be aware,
-input-parameters are generally not declared {\tt const}
+input parameters are generally not declared {\tt const}
in libzahl. Currently, some functions actually make
modifications (that do not affect the value) to
-input-parameters.
+input parameters.