aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Laeufer2020-07-31 16:55:05 -0700
committerGitHub2020-07-31 23:55:05 +0000
commita82958714c096eefebde16e0491b978135c1757e (patch)
treed15b8e0943e606dcf8aa4f0026981dfd5f90fd87
parent17279da1f9f07bbd690f248c454656a231af18ae (diff)
Fixed typo in fixed-point type parameter examples (#1816)
Co-authored-by: chick <chick@qrhino.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-rw-r--r--spec/spec.pdfbin338195 -> 338200 bytes
-rw-r--r--spec/spec.tex2
2 files changed, 1 insertions, 1 deletions
diff --git a/spec/spec.pdf b/spec/spec.pdf
index fa3dbe8f..45dd4879 100644
--- a/spec/spec.pdf
+++ b/spec/spec.pdf
Binary files differ
diff --git a/spec/spec.tex b/spec/spec.tex
index 8410c9d2..e20a8b22 100644
--- a/spec/spec.tex
+++ b/spec/spec.tex
@@ -219,7 +219,7 @@ Included below are examples of the syntax for all possible combinations of speci
fixed-point type parameters.
\begin{lstlisting}
Fixed<3><<2>> ; 3-bit width, 2 bits after binary point
-Fixed<10> ; 1-bit width, inferred binary point
+Fixed<10> ; 10-bit width, inferred binary point
Fixed<<-4>> ; Inferred width, binary point of -4
Fixed ; Inferred width and binary point
\end{lstlisting}