aboutsummaryrefslogtreecommitdiff
path: root/docs/reference/packages.rst
diff options
context:
space:
mode:
authorMike Causer2019-02-13 12:29:01 +1100
committerDamien George2019-10-16 14:08:28 +1100
commita2c4cb484d6018a65dabd921c509fc12b71a088b (patch)
treef83725e5b9ff8390ff8a5ebc8c64926acb08db0a /docs/reference/packages.rst
parent5a8f392f09e3826ff2a1f4330700198e9c0d42cc (diff)
docs: Fix spelling in various parts of the docs.
Diffstat (limited to 'docs/reference/packages.rst')
-rw-r--r--docs/reference/packages.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/reference/packages.rst b/docs/reference/packages.rst
index 8be2461c2..43217493e 100644
--- a/docs/reference/packages.rst
+++ b/docs/reference/packages.rst
@@ -39,7 +39,7 @@ The MicroPython distribution package format is a well-known tar.gz
format, with some adaptations however. The Gzip compressor, used as
an external wrapper for TAR archives, by default uses 32KB dictionary
size, which means that to uncompress a compressed stream, 32KB of
-contguous memory needs to be allocated. This requirement may be not
+contiguous memory needs to be allocated. This requirement may be not
satisfiable on low-memory devices, which may have total memory available
less than that amount, and even if not, a contiguous block like that
may be hard to allocate due to memory fragmentation. To accommodate
@@ -132,7 +132,7 @@ Installing to a directory image involves using ``-p`` switch to `upip`::
micropython -m upip install -p install_dir micropython-pystone_lowmem
-After this command, the package content (and contents of every depenency
+After this command, the package content (and contents of every dependency
packages) will be available in the ``install_dir/`` subdirectory. You
would need to transfer contents of this directory (without the
``install_dir/`` prefix) to the device, at the suitable location, where