Skip to content

Commit 92de84c

Browse files
Typos
1 parent 0eec96e commit 92de84c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Now the new record is saved, but excel file has not been updated yet. You have t
103103
$table->writeExcel();
104104
```
105105

106-
You may also wont to read/write some of the rows or columns.
106+
You may also want to read or write only some of the rows and columns.
107107

108108
```php
109109
use Robotusers/Excel/Registry;
@@ -124,7 +124,7 @@ $row = $table->find()->first()->toArray();
124124
]
125125
```
126126

127-
Note that `_row` does not match the real row index. To keep original row indexes you mast use `keepOriginalRows` option.
127+
Note that `_row` does not match the real row index. To keep original row indexes you must use `keepOriginalRows` option.
128128

129129
```php
130130
use Robotusers/Excel/Registry;
@@ -146,7 +146,7 @@ $row = $table->find()->first()->toArray();
146146
]
147147
```
148148

149-
The same principle applies to writing to a file. If you for example delete the second row it won't become empty in result excel file when `keepOriginalRows` is `false`. You have to set it to true if you want to keep rows consistency across the table and the file.
149+
The same principle applies to writing to a file. If you delete the second row it won't become empty in result excel file when `keepOriginalRows` is `false`. You have to set this option to `true` if you want to keep rows consistency across the table and the file.
150150

151151
## Behavior
152152

0 commit comments

Comments
 (0)