Browse Source

[Docs] Minor typos and tweaks (#23)

Javier Eguiluz 2 years ago
parent
commit
dd6b33a35c
3 changed files with 4 additions and 4 deletions
  1. 1 1
      README.md
  2. 1 1
      docs/compile.md
  3. 2 2
      docs/early-hints.md

+ 1 - 1
README.md

@@ -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>
 

+ 1 - 1
docs/compile.md

@@ -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

+ 2 - 2
docs/early-hints.md

@@ -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.