Skip to content

Commit

Permalink
genlib/cordic: fix typos
Browse files Browse the repository at this point in the history
sbourdeauducq committed Mar 5, 2015
1 parent 06f3c46 commit 7b00141
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migen/genlib/cordic.py
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ class TwoQuadrantCordic(Module):
mode has full throughput but uses many registers and has large
latency. If `"combinatorial"`, there are no registers, throughput is
maximal and latency is zero. `"pipelined"` and `"combinatorial"` use
the same number of sphifters and adders.
the same number of shifters and adders.
The type of trigonometric/arithmetic function is determined by
`cordic_mode` and `func_mode`. :math:`g` is the gain of the CORDIC.
@@ -47,7 +47,7 @@ class TwoQuadrantCordic(Module):
z_o = z_i + \\tan^{-1}(y_i/x_i)
* rotate-hyperbolic: hyperbolic functions of `zi`. Used to
calculate hyprbolic functions, `sinh, cosh, tanh = cosh/sinh,
calculate hyperbolic functions, `sinh, cosh, tanh = cosh/sinh,
exp = cosh + sinh`:
.. math::

0 comments on commit 7b00141

Please sign in to comment.