Skip to content

Commit ea01e14

Browse files
committed
fix typos; minor updates
- signed-off-by: trimstray <trimstray@gmail.com>
1 parent 5758634 commit ea01e14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4252,12 +4252,12 @@ Useful resources:
42524252
</details>
42534253
42544254
<details>
4255-
<summary><b>How to prevent <code>dd</code> from freezing system?</b></summary><br>
4255+
<summary><b>How to prevent <code>dd</code> from freezing your system?</b></summary><br>
42564256
42574257
Try using ionice:
42584258
42594259
```bash
4260-
ionice -c3 dd if=/dev/zero of=z
4260+
ionice -c3 dd if=/dev/zero of=file
42614261
```
42624262
42634263
This start the `dd` process with the "idle" IO priority: it only gets disk time when no other process is using disk IO for a certain amount of time.
@@ -5257,7 +5257,7 @@ if [[ $state -ne 0 ]] ; then echo "not connection" > /dev/stderr ; exit ; fi
52575257
</details>
52585258
52595259
<details>
5260-
<summary><b>You should rewrite POST with payload to external API but POST requests loose the parameters passed on the URL. How to fix this problem (e.g. in Nginx) and what are the reasons for this behavior?</b></summary><br>
5260+
<summary><b>You should rewrite POST with payload to an external API but the POST requests loose the parameters passed on the URL. How to fix this problem (e.g. in Nginx) and what are the reasons for this behavior?</b></summary><br>
52615261
52625262
The issue is that external redirects will never resend **POST** data. This is written into the HTTP spec (check the `3xx` section). Any client that does do this is violating the spec.
52635263

0 commit comments

Comments
 (0)