Skip to content

Commit ca4acf2

Browse files
committed
fix typo
1 parent 402162f commit ca4acf2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

devops/Free-sandbox-server-for-development.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
We can use Heroku as a forever-free sandbox solution for testing or hosting micro service. Adding a credit card to have 1000 free computing hours.
77

8-
Heroku will make a service down if no received request come. We can use a cronjob-like service to check health service and keep it live !!! ;)
8+
Heroku will make a service down if no received request come. We can use a cronjob-like service to check service health and keep it live !!! ;)
99

10-
Cronjob check health service : pingdom, statuscake, port-monitor, uptimerobot
10+
Cronjob check health SASS : pingdom, statuscake, port-monitor, uptimerobot
1111

12-
**Btw, I don't recommend you keep service live but no use, it make Heroku infrastructure heavy and THAT'S NOT FAIR for them !**
12+
**Btw, I don't recommend you keep service live but no use, it makes Heroku infrastructure heavy and THAT'S NOT FAIR for them !**
1313

python/HTTP2-supported-for-python-requests-library.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
The sophisticated http client in Python is `requests`, it has simple API but powerful features. You can use it for crawling, sending request to third-party API or writing tests.
77

8-
Btw, at this moment it doesn't support HTTP/2 protocol (actually we often doesn't need its `Server Push` or `Multi resource stream` features). But something the API endpoint only support HTTP/2 like Akamai Load Balacing service.
8+
Btw, at this moment it doesn't support HTTP/2 protocol (actually we often doesn't need its `Server Push` or `Multi resource stream` features). But sometime the API endpoint only supports HTTP/2 like Akamai Load Balacing service.
99

1010
The hero is new library named `hyper`, it has been developing to support full HTTP/2 specs. But if all we need is requesting single request to a HTTP/2 server. It works like a charm.
1111

@@ -32,7 +32,7 @@ This mean any url has prefix `https://` will be hanlded by **HTTP20Adaper** of *
3232

3333
### Notice
3434

35-
If you run above example, you can see the result is
35+
If you run above example, you will see the result
3636

3737
```
3838
200

0 commit comments

Comments
 (0)