[Docs] Minor typos and tweaks (#23)

This commit is contained in:
Javier Eguiluz
2022-10-15 10:50:49 +02:00
committed by GitHub
parent ce873e4459
commit dd6b33a35c
3 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ FrankenPHP works with any PHP app and makes your Symfony projects faster than ev
FrankenPHP can also be used as a standalone Go library to embed PHP in any app using `net/http`.
[**Learn more** on *frankenphp.dev*](https://frankenphp.dev) and in this slide deck:
[**Learn more** on *frankenphp.dev*](https://frankenphp.dev) in this slide deck:
<a href="https://dunglas.dev/2022/10/frankenphp-the-modern-php-app-server-written-in-go/"><img src="https://dunglas.dev/wp-content/uploads/2022/10/frankenphp.png" alt="Slides" width="600"></a>

View File

@@ -50,7 +50,7 @@ export CFLAGS="-DNO_SIGPROF"
--with-iconv=/opt/homebrew/opt/libiconv/
```
These flags are required, but you can add other flags (extra extensions...)
These flags are required, but you can add other flags (e.g. extra extensions)
if needed.
## Compile PHP

View File

@@ -1,7 +1,7 @@
# Early Hints
FrankenPHP natively supports the [103 Early Hints status code](https://developer.chrome.com/blog/early-hints/).
Using Early Hints can improve the load of your web pages by 30%.
Using Early Hints can improve the load time of your web pages by 30%.
```php
<?php
@@ -18,4 +18,4 @@ echo <<<'HTML'
HTML;
```
Early Hints are supported by the normal and the [worker](worker.md) mode.
Early Hints are supported both by the normal and the [worker](worker.md) modes.