Skip to content

Commit 810f62b

Browse files
authored
Merge pull request #143 from per1234/fix-documentation-typos
Fix typos in documentation
2 parents 041f054 + 6d56f50 commit 810f62b

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

README.md

+8-10
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,9 @@ By clicking on the tray icon and going to the debug console you can try most of
121121
log on
122122
123123
### List the boards
124-
To get a json list of the connected boards you can issue the command list:
124+
To get a json list of the connected boards you can issue the command:
125125
126-
```javascript
127-
socket.emit('command', 'list');
128-
```
126+
list
129127
130128
You will receive an object of all the boards connected with USB or over the network:
131129
@@ -264,7 +262,7 @@ The syntax of the command is:
264262
downloadtool {{name}} {{version}} {{behaviour}}
265263
266264
where `version` can be a version number of the string "latest", and `behaviour` can be
267-
"keep" (which skip the download if the tool already exists) and "replace" (which will download it again).
265+
"keep" (which skips the download if the tool already exists) and "replace" (which will download it again).
268266
269267
### Upload
270268
You can upload a binary sketch to a board connected to a port with a POST request to be made at the http endpoint.
@@ -293,13 +291,13 @@ The payload is a json object that looks like this:
293291
}
294292
```
295293
296-
- commandline is the command to execute to perform the upload. This is for example avrdude on a leonardo.
294+
- commandline is the command to execute to perform the upload. This is, for example, avrdude on a Leonardo.
297295
298296
- hex contains the sketch hex encoded in base64
299297
300298
- signature is the signature of the commandline signed with the private key that matches the public key contained in the config.ini of the arduino-create-agent
301299
302-
The results of the upload will be delivered via websocket with messages that looks like:
300+
The results of the upload will be delivered via websocket with messages that look like:
303301
304302
```json
305303
{"Msg":"avrdude: verifying ...","ProgrammerStatus":"Busy"}
@@ -339,7 +337,7 @@ Your contribution is adding or modifying existing behaviour, please always refer
339337
340338
Be sure to use `go vet` and `go fmt` on every file before each commit: it ensures your code is properly formatted.
341339
342-
Also, for your contribution to be accepted, everyone of your commits must be "Signed-off". This is done by commiting using this command: `git commit --signoff`
340+
Also, for your contribution to be accepted, every one of your commits must be "Signed-off". This is done by committing using this command: `git commit --signoff`
343341
344342
By signing off your commits, you agree to the following agreement, also known as [Developer Certificate of Origin](http://developercertificate.org/): it assures everyone that the code you're submitting is yours or that you have rights to submit it.
345343
@@ -384,5 +382,5 @@ By making a contribution to this project, I certify that:
384382
385383
386384
## Creating a release
387-
Just create a new release on github, and our drone server will build and upload
388-
ithe compiled binaries for every architecture in a zip file in the release itself.
385+
Just create a new release on GitHub, and our drone server will build and upload
386+
the compiled binaries for every architecture in a zip file in the release itself.

0 commit comments

Comments
 (0)