Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix failing rtd document generation and smuggle some typo corrections. #2681

Merged
merged 2 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
# Required
version: 2

# Required
build:
os: ubuntu-20.04
tools:
python: "3.8"

# Optionally build your docs in additional formats such as PDF and ePub
formats:
- htmlzip
Expand All @@ -14,7 +20,6 @@ sphinx:

# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.8
install:
- requirements: docs/requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion docs/source/information/command-handler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ System commands can be activated using: -

The additional parameter for websocket is used to allow multiple
connections on one websocket server instance, both with or without
command proceesing.
command processing.

When the websocket open request has query parameter ``"command=true"``
command processing is enabled.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/information/events.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ such as if a timer expires.

This can be a regular 'C' callback function, which you should use for handling interrupts.

For regular application code, a :cpp:class:`Delegate` provides more flexbility and allows you to create
For regular application code, a :cpp:class:`Delegate` provides more flexibility and allows you to create
simpler, cleaner code. See `Delegation <https://en.wikipedia.org/wiki/Delegation_(object-oriented_programming)>`__
for a bit of background.

Expand Down
4 changes: 2 additions & 2 deletions samples/SDCard/example.output.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Read: hello has 5 letters



4. Write speed benchamark:
4. Write speed benchmark:
Write 1 kBytes in 1 Bytes increment: 23.17 kB/s
Write 1 kBytes in 64 Bytes increment: 23.13 kB/s
Write 1 kBytes in 128 Bytes increment: 23.09 kB/s
Expand All @@ -54,4 +54,4 @@ Write 1 kBytes in 1024 Bytes increment: 24.01 kB/s
Write 4 kBytes in 1024 Bytes increment: 71.36 kB/s
Write 8 kBytes in 512 Bytes increment: 91.49 kB/s
Write 8 kBytes in 1024 Bytes increment: 102.11 kB/s
Write 8 kBytes in 8192 Bytes increment: 96.95 kB/s
Write 8 kBytes in 8192 Bytes increment: 96.95 kB/s
Loading