Fix a few typos in the docs;

This commit is contained in:
Benjamin Bouvier
2016-10-28 18:56:52 +02:00
committed by Jakob Stoklund Olesen
parent 409ce91513
commit de10910324
6 changed files with 16 additions and 16 deletions

View File

@@ -134,7 +134,7 @@ call_indirect = Instruction(
Indirect function call.
Call the function pointed to by `callee` with the given arguments. The
called function must match the soecified signature.
called function must match the specified signature.
""",
ins=(SIG, callee, args),
outs=rvals)
@@ -392,9 +392,9 @@ srem = Instruction(
.. todo:: Integer remainder vs modulus.
Clarify whether the result has the sign of the divisor or the dividend.
Should we add a ``smod`` instruction for the case where the result has
the same sign as the divisor?
Clarify whether the result has the sign of the divisor or the dividend.
Should we add a ``smod`` instruction for the case where the result has
the same sign as the divisor?
""",
ins=(x, y), outs=a)
@@ -900,7 +900,7 @@ fma = Instruction(
'fma', r"""
Floating point fused multiply-and-add.
Computes :math:`a := xy+z` wihtout any intermediate rounding of the
Computes :math:`a := xy+z` without any intermediate rounding of the
product.
""",
ins=(x, y, z), outs=a)

View File

@@ -1,6 +1,6 @@
"""
The `cretonne.entities` module predefines all the Cretonne entity reference
operand types. Thee are corresponding definitions in the `cretonne.entities`
operand types. There are corresponding definitions in the `cretonne.entities`
Rust module.
"""
from __future__ import absolute_import