Skip to content

Commit eaecc4c

Browse files
mad474pfalcon
authored andcommitted
docs/esp8266/general: Grammar fixes.
1 parent ca41dc2 commit eaecc4c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/esp8266/general.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ ESP8266 is a popular WiFi-enabled System-on-Chip (SoC) by Espressif Systems.
66
Multitude of boards
77
-------------------
88

9-
There are multitude of modules and boards from different sources which carry
10-
ESP8266 chip. MicroPython tries to provide a generic port which would run on
9+
There are a multitude of modules and boards from different sources which carry
10+
the ESP8266 chip. MicroPython tries to provide a generic port which would run on
1111
as many boards/modules as possible, but there may be limitations. Adafruit
1212
Feather HUZZAH board is taken as a reference board for the port (for example,
1313
testing is performed on it). If you have another board, please make sure you
@@ -18,8 +18,8 @@ To make a generic ESP8266 port and support as many boards as possible,
1818
following design and implementation decision were made:
1919

2020
* GPIO pin numbering is based on ESP8266 chip numbering, not some "logical"
21-
numbering of a particular board. Please have manual/pin diagram of your board
22-
handy to find correspondce between your board pins and actual ESP8266 pins.
21+
numbering of a particular board. Please have the manual/pin diagram of your board
22+
at hand to find correspondence between your board pins and actual ESP8266 pins.
2323
We also encourage users of various boards to share this mapping via MicroPython
2424
forum, with the idea to collect community-maintained reference materials
2525
eventually.
@@ -37,10 +37,10 @@ Technical specifications and SoC datasheets
3737

3838
The datasheets and other reference material for ESP8266 chip are available
3939
from the vendor site: http://bbs.espressif.com/viewtopic.php?f=67&t=225 .
40-
The are primary reference for the chip technical specifications, capabilities,
40+
They are the primary reference for the chip technical specifications, capabilities,
4141
operating modes, internal functioning, etc.
4242

43-
For your convinience, some of technical specifications are provided below:
43+
For your convenience, some of technical specifications are provided below:
4444

4545
* Architecture: Xtensa lx106
4646
* CPU frequency: 80MHz overclockable to 160MHz
@@ -64,13 +64,13 @@ Boot process
6464
On boot, MicroPython EPS8266 port executes ``_boot.py`` script from internal
6565
frozen modules. It mounts filesystem in FlashROM, or if it's not available,
6666
performs first-time setup of the module and creates the filesystem. This
67-
part of boot process is considered fixed, and not available for customization
67+
part of the boot process is considered fixed, and not available for customization
6868
for end users (even if you build from source, please refrain from changes to
6969
it; customization of early boot process is available only to advanced users
7070
and developers, who can diagnose themselves any issues arising from
7171
modifying the standard process).
7272

73-
Once filesystem is mounted, ``boot.py`` is executed from it. The standard
73+
Once the filesystem is mounted, ``boot.py`` is executed from it. The standard
7474
version of this file is created during first-time module set up and by
7575
defaults starts up a WebREPL daemon to handle incoming connections. This
7676
file is customizable by end users (for example, you may want to disable
@@ -89,5 +89,5 @@ the following in ``main.py``::
8989
import my_app
9090
my_app.main()
9191

92-
This will allow to keep structure of your application clear, as well as
92+
This will allow to keep the structure of your application clear, as well as
9393
allow to install multiple applications on a board, and switch among them.

0 commit comments

Comments
 (0)