Skip to content

Commit 2aa9b9f

Browse files
committed
Fix some typos in the english README.md
1 parent 1c84843 commit 2aa9b9f

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

docs/en/README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ use SimpleSoftwareIO\QrCode\Facades\QrCode;
3838

3939
Run `composer require simplesoftwareio/simple-qrcode "~4"` to add the package.
4040

41-
Laravel will automiatcally pick up and install the package.
41+
Laravel will automatically pick up and install the package.
4242

4343
<a id="docs-ideas"></a>
4444
## Simple Ideas
@@ -96,7 +96,7 @@ The `generate` method has a second parameter that will accept a filename and pat
9696

9797
#### Format `(string $format)`
9898

99-
Three formats are currently supported; `png,` `eps,` and `svg.` To change the format use the following code:
99+
Three formats are currently supported; `png,` `eps,` and `svg`. To change the format use the following code:
100100

101101
QrCode::format('png'); //Will return a png image
102102
QrCode::format('eps'); //Will return a eps image
@@ -159,21 +159,21 @@ You may change the eye colors by using the `eyeColor` method.
159159

160160
#### Style `(string $style, float $size = 0.5)`
161161

162-
The style can be easily swapped out with `square.` `dot,` or `round.` This will change the blocks within the QrCode. The second parameter will affect the size of the dots or roundness.
162+
The style can be easily swapped out with `square`, `dot,` or `round`. This will change the blocks within the QrCode. The second parameter will affect the size of the dots or roundness.
163163

164164
| Style | Example |
165165
| --- | --- |
166-
| `sqaure` | ![Sqaure](https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/imgs/200-pixels.png?raw=true) |
166+
| `square` | ![Square](https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/imgs/200-pixels.png?raw=true) |
167167
| `dot` | ![Dot](https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/imgs/dot.png)|
168168
| `round` | ![Round](https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/imgs/round.png?raw=true) |
169169

170170
#### Eye Style `(string $style)`
171171

172-
The eye within the QrCode supports two different styles, `sqaure` and `circle.`
172+
The eye within the QrCode supports two different styles, `square` and `circle`.
173173

174174
| Style | Example |
175175
| --- | --- |
176-
| `sqaure` | ![Sqaure](https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/imgs/200-pixels.png?raw=true) |
176+
| `square` | ![Square](https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/imgs/200-pixels.png?raw=true) |
177177
| `circle` | ![Circle](https://raw.githubusercontent.com/SimpleSoftwareIO/simple-qrcode/master/docs/imgs/circle-eye.png?raw=true)|
178178

179179
#### Margin `(int $margin)`
@@ -201,7 +201,9 @@ The following are supported options for the `errorCorrection` method:
201201
202202
#### Encoding `(string $encoding)`
203203

204-
Change the character encoding that is used to build a QrCode. By default `ISO-8859-1` is selected as the encoder. Read more about [character encoding](http://en.wikipedia.org/wiki/Character_encoding) You can change this to any of the following:
204+
Change the character encoding that is used to build a QrCode. By default `ISO-8859-1` is selected as the encoder. Read more about [character encoding](http://en.wikipedia.org/wiki/Character_encoding).
205+
206+
You can change this to any of the following:
205207

206208
QrCode::encoding('UTF-8')->generate('Make me a QrCode with special symbols ♠♥!!');
207209

@@ -346,7 +348,7 @@ This helper makes SMS messages that can be prefilled with the send to address an
346348

347349
#### WiFi
348350

349-
This helpers makes scannable QrCodes that can connect a phone to a WiFI network:
351+
This helpers makes scannable QrCodes that can connect a phone to a WiFi network:
350352

351353
QrCode::wiFi([
352354
'encryption' => 'WPA/WEP',
@@ -366,7 +368,7 @@ This helpers makes scannable QrCodes that can connect a phone to a WiFI network:
366368
'hidden' => 'true'
367369
]);
368370

369-
//Connects to an secured, WiFi network.
371+
//Connects to a secured WiFi network.
370372
QrCode::wiFi([
371373
'ssid' => 'Network Name',
372374
'encryption' => 'WPA',

0 commit comments

Comments
 (0)