8000 docs: Spelling mistakes · jmax315/circuitpython@ce166e6 · GitHub
[go: up one dir, main page]

Skip to content

Commit ce166e6

Browse files
mcauserpfalcon
authored andcommitted
docs: Spelling mistakes
1 parent 3eb532e commit ce166e6

36 files changed

+60
-60
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ This can be achieved with:
3535
make MICROPY_PORT=<port_name> latexpdf
3636

3737
but require rather complete install of LaTeX with various extensions. On
38-
Debiab/Ubuntu, try (500MB+ download):
38+
Debian/Ubuntu, try (500MB+ download):
3939

4040
apt-get install texlive-latex-recommended texlive-latex-extra

docs/esp8266/general.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ For your convenience, some of technical specifications are provided below:
5252
external FlashROM, UART, deep sleep wake-up, etc.)
5353
* UART: One RX/TX UART (no hardware handshaking), one TX-only UART.
5454
* SPI: 2 SPI interfaces (one used for FlashROM).
55-
* I2C: No native extenal I2C (bitbang implementation available on any pins).
55+
* I2C: No native external I2C (bitbang implementation available on any pins).
5656
* I2S: 1.
5757
* Programming: using BootROM bootloader from UART. Due to external FlashROM
5858
and always-available BootROM bootloader, ESP8266 is not brickable.

docs/esp8266/tutorial/repl.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ WebREPL - a prompt over WiFi
3636
WebREPL allows you to use the Python prompt over WiFi, connecting through a
3737
browser. The latest versions of Firefox and Chrome are supported.
3838

39-
For your convinience, WebREPL client is hosted at
39+
For your convenience, WebREPL client is hosted at
4040
`<http://micropython.org/webrepl>`__ . Alternatively, you can install it
4141
locally from the the GitHub repository
4242
`<https://github.com/micropython/webrepl>`__ .

docs/library/builtins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Builtin Functions
22
=================
33

4-
All builtin functions are described here. They are alse available via
4+
All builtin functions are described here. They are also available via
55
``builtins`` module.
66

77
.. function:: abs()

docs/library/esp.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Functions
1515
Get or set the sleep type.
1616

1717
If the ``sleep_type`` parameter is provided, sets the sleep type to its
18-
value. If the function is called wihout parameters, returns the current
18+
value. If the function is called without parameters, returns the current
1919
sleep type.
2020

2121
The possible sleep types are defined as constants:

docs/library/machine.Pin.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Methods
8484

8585
- ``None`` - no pull up or down resistor.
8686
- ``Pin.PULL_UP`` - pull up resistor enabled.
87-
- ``Pin.PULL_DOWN`` - pull down resitor enabled.
87+
- ``Pin.PULL_DOWN`` - pull down resistor enabled.
8888

8989
- ``drive`` can be one of:
9090

docs/library/machine.RTC.rst

-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Methods
3939

4040
.. method:: RTC.alarm(id, time, /*, repeat=False)
4141

42-
Set the RTC alarm. Time might be either a milllisecond value to program the alarm to
42+
Set the RTC alarm. Time might be either a millisecond value to program the alarm to
4343
current time + time_in_ms in the future, or a datetimetuple. If the time passed is in
4444
milliseconds, repeat can be set to ``True`` to make the alarm periodic.
4545

docs/library/machine.SPI.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Methods
4545
respectively.
4646
- ``bits`` is the width of each transfer, accepted values are 8, 16 and 32.
4747
- ``firstbit`` can be ``SPI.MSB`` only.
48-
- ``pins`` is an optional tupple with the pins to assign to the SPI bus.
48+
- ``pins`` is an optional tuple with the pins to assign to the SPI bus.
4949

5050
.. method:: SPI.deinit()
5151

docs/library/machine.Timer.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Methods
104104
If only a channel identifier passed, then a previously initialized channel
105105
object is returned (or ``None`` if there is no previous channel).
106106

107-
Othwerwise, a TimerChannel object is initialized and returned.
107+
Otherwise, a TimerChannel object is initialized and returned.
108108

109109
The operating mode is is the one configured to the Timer object that was used to
110110
create the channel.
@@ -152,7 +152,7 @@ Methods
152152

153153
.. method:: timerchannel.irq(\*, trigger, priority=1, handler=None)
154154

155-
The behavior of this callback is heaviliy dependent on the operating
155+
The behavior of this callback is heavily dependent on the operating
156156
mode of the timer channel:
157157

158158
- If mode is ``Timer.PERIODIC`` the callback is executed periodically

docs/library/machine.UART.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Methods
167167
.. data:: UART.EVEN
168168
.. data:: UART.ODD
169169

170-
parity types (anlong with ``None``)
170+
parity types (along with ``None``)
171171

172172
.. data:: UART.RX_ANY
173173

0 commit comments

Comments
 (0)
0