summaryrefslogtreecommitdiff
path: root/docs/reference/asm_thumb2_hints_tips.rst
diff options
context:
space:
mode:
authorMike Causer <mcauser@gmail.com>2016-08-01 09:52:00 +1000
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-08-02 11:17:46 +0300
commitce166e6b68b7fafb73a99fd64081f8a4155fe22a (patch)
tree20b063465b430968482cea18c41f949fbd2ec845 /docs/reference/asm_thumb2_hints_tips.rst
parent3eb532e97463b7f9b9ffe6f617a035284ef3e37b (diff)
docs: Spelling mistakes
Diffstat (limited to 'docs/reference/asm_thumb2_hints_tips.rst')
-rw-r--r--docs/reference/asm_thumb2_hints_tips.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/reference/asm_thumb2_hints_tips.rst b/docs/reference/asm_thumb2_hints_tips.rst
index f0826e47e..062a3c844 100644
--- a/docs/reference/asm_thumb2_hints_tips.rst
+++ b/docs/reference/asm_thumb2_hints_tips.rst
@@ -129,7 +129,7 @@ Non-integer data types
~~~~~~~~~~~~~~~~~~~~~~
These may be handled by means of arrays of the appropriate data type. For
-example, single precison floating point data may be processed as follows.
+example, single precision floating point data may be processed as follows.
This code example takes an array of floats and replaces its contents with
their squares.
@@ -172,7 +172,7 @@ thus:
The const() construct causes MicroPython to replace the variable name
with its value at compile time. If constants are declared in an outer
-Python scope they can be shared between mutiple assembler functions and
+Python scope they can be shared between multiple assembler functions and
with Python code.
Assembler code as class methods