Skip to content

Commit 7b00141

Browse files
committedMar 5, 2015
genlib/cordic: fix typos
1 parent 06f3c46 commit 7b00141

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎migen/genlib/cordic.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class TwoQuadrantCordic(Module):
2222
mode has full throughput but uses many registers and has large
2323
latency. If `"combinatorial"`, there are no registers, throughput is
2424
maximal and latency is zero. `"pipelined"` and `"combinatorial"` use
25-
the same number of sphifters and adders.
25+
the same number of shifters and adders.
2626
2727
The type of trigonometric/arithmetic function is determined by
2828
`cordic_mode` and `func_mode`. :math:`g` is the gain of the CORDIC.
@@ -47,7 +47,7 @@ class TwoQuadrantCordic(Module):
4747
z_o = z_i + \\tan^{-1}(y_i/x_i)
4848
4949
* rotate-hyperbolic: hyperbolic functions of `zi`. Used to
50-
calculate hyprbolic functions, `sinh, cosh, tanh = cosh/sinh,
50+
calculate hyperbolic functions, `sinh, cosh, tanh = cosh/sinh,
5151
exp = cosh + sinh`:
5252
5353
.. math::

0 commit comments

Comments
 (0)
Please sign in to comment.