@@ -13,14 +13,14 @@ http://micropython.org/webrepl (note: while it's hosted online,
1313all interaction with your boards still happen locally in your
1414own 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 .
1717This is due to not widely published policy that HTTPS pages may
1818access 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
2020over 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
2222confusingly, 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
2424local network, HTTPS isn't strictly required, and not accessing
2525webrepl.html over HTTPS is a suggested workaround.
2626
@@ -55,7 +55,7 @@ access, and board control.
55552 . Network ready and Web technologies ready (allowing access directly
5656from 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
6060protocol. 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).
7676it's not intended to support multiple, per-connection sessions.
7777There's a single REPL session, and this same session is accessible
7878via 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
8181particular system may actually limit number of concurrent
8282connections to ease implementation and save system resources.
@@ -91,7 +91,7 @@ communicate terminal input and output between a client and a WebREPL-
9191enabled device (server). There's a guaranteed password prompt, which
9292can be detected by the appearance of characters ':', ' ' (at this
9393point, 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
9595using WebREPL terminal protocol, the information above should be enough
9696to implement it (or feel free to study implementation of the official
9797clients in this repository).
@@ -106,7 +106,7 @@ The `webrepl_cli.py` module mentioned above intended to be both a
106106command-line tool and a library for 3rd-party projects to use, though
107107it may not be there yet. If you're interested in integrating WebREPL
108108transfer/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
110110useful to MicroPython community, to help us prioritize this work.
111111
112112While the protocol is (eventually) intended to provide full-fledged
0 commit comments