Skip to content

Commit f8dbf12

Browse files
committed
README: Fix typos.
1 parent acf6666 commit f8dbf12

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ http://micropython.org/webrepl (note: while it's hosted online,
1313
all interaction with your boards still happen locally in your
1414
own network).
1515

16-
At this time, WebREPL client cannot be accessed over HTTPS connection.
16+
At this time, WebREPL client cannot be accessed over HTTPS connections.
1717
This is due to not widely published policy that HTTPS pages may
1818
access only WSS (WebSocket Secure) protocol. This is somewhat
19-
similar to warnings issues when e.g. an HTTPS paeg loads an image
19+
similar to warnings issued when e.g. an HTTPS page loads an image
2020
over plain HTTP. However, in case of WebSockets, some browsers
21-
don't even issue a user-visible warning, and other may word it
21+
don't even issue a user-visible warning, and others may word it
2222
confusingly, so it's hard to understand that it applies to WebSocket
23-
connection. As WebREPL is intended to be used only within user's
23+
connections. As WebREPL is intended to be used only within a user's
2424
local network, HTTPS isn't strictly required, and not accessing
2525
webrepl.html over HTTPS is a suggested workaround.
2626

@@ -55,7 +55,7 @@ access, and board control.
5555
2. Network ready and Web technologies ready (allowing access directly
5656
from a browser with an HTML-based client).
5757

58-
Based on these requirements, WebREPL uses single connection over
58+
Based on these requirements, WebREPL uses a single connection over
5959
[WebSocket](https://en.wikipedia.org/wiki/WebSocket) as a transport
6060
protocol. Note that while WebREPL is primarily intended for network
6161
(usually, wireless) connection, due to its single-connection,
@@ -76,7 +76,7 @@ access/operations will be blocking).
7676
it's not intended to support multiple, per-connection sessions.
7777
There's a single REPL session, and this same session is accessible
7878
via different media, like UART or WebREPL. This also means that
79-
there's usually no point in having more than one WenREPL connection
79+
there's usually no point in having more than one WebREPL connection
8080
(multiple connections would access the same session), and a
8181
particular system may actually limit number of concurrent
8282
connections to ease implementation and save system resources.
@@ -91,7 +91,7 @@ communicate terminal input and output between a client and a WebREPL-
9191
enabled device (server). There's a guaranteed password prompt, which
9292
can be detected by the appearance of characters ':', ' ' (at this
9393
point, server expected a password ending with '\n' from client).
94-
If you're interested to develop a 3rd-party application to communicate
94+
If you're interested in developing a 3rd-party application to communicate
9595
using WebREPL terminal protocol, the information above should be enough
9696
to implement it (or feel free to study implementation of the official
9797
clients in this repository).
@@ -106,7 +106,7 @@ The `webrepl_cli.py` module mentioned above intended to be both a
106106
command-line tool and a library for 3rd-party projects to use, though
107107
it may not be there yet. If you're interested in integrating WebREPL
108108
transfer/control capabilities into your application, please submit
109-
a ticket to Github with information about your project and how it is
109+
a ticket to GitHub with information about your project and how it is
110110
useful to MicroPython community, to help us prioritize this work.
111111

112112
While the protocol is (eventually) intended to provide full-fledged

0 commit comments

Comments
 (0)