Skip to content

Commit d9eed47

Browse files
Re #1: corrections
1 parent e75df78 commit d9eed47

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

lib/io_open.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# io.open(\<filename> [, \<mode>])
1+
# io.open(&lt;filename&gt; [, &lt;mode&gt;])
22

33
The io.open() function is used to open the file on SD card for subsequent reading or writing. After the script is done with the file manipulation [io.close()](io_close.md) function should be used.
44

@@ -19,7 +19,7 @@ The io.open() function is used to open the file on SD card for subsequent readin
1919

2020
### Return value
2121

22-
* `\<file object>` if file was successfully opened.
22+
* `<file object>` if file was successfully opened.
2323

2424
* `nil` if file could not be opened.
2525

lib/io_read.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# io.read(\<file object> , \<length>)
1+
# io.read(&lt;file object&gt; , &lt;length&gt;)
22

33
The io.read() function is used to read data from the file on SD card.
44

@@ -13,6 +13,6 @@ The io.read() function is used to read data from the file on SD card.
1313

1414
### Return value
1515

16-
* `\<string>` a string with a length equal or less than <length>
16+
* `<string>` a string with a length equal or less than <length>
1717

1818
* `""` a zero length string if the end of file was reached

lib/io_seek.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# io.seek(\<file object> , \<offset>)
1+
# io.seek(&lt;file object&gt; , &lt;offset&gt;)
22

33
The io.seek() function is used to move the current read/write position.
44

lib/io_write.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# io.write(\<file object> , \<data>[, \<data>, ...])
1+
# io.write(&lt;file object&gt; , &lt;data&gt;[, &lt;data&gt;, ...])
22

33
The io.write() function is used to write data to the file on SD card.
44

0 commit comments

Comments
 (0)