Skip to content

Commit 9ef2d71

Browse files
committed
Fix indentation
1 parent 90bd1c8 commit 9ef2d71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ To load the static cache files from PHP, please place the following code snippet
217217
return;
218218
}
219219

220-
// determine the exact file to use
220+
// determine the exact file to use
221221
$path = $root . '/' . ltrim($_SERVER['REQUEST_URI'] ?? '', '/');
222222
if (is_file($path . '/index.html') === true) {
223223
// a HTML representation exists in the cache
@@ -271,7 +271,7 @@ Afterwards add the following block to your `.htaccess` file to make Apache use `
271271
Replace the last line of the loader function with this code:
272272

273273
```php
274-
// split the file into headers (before two line breaks) and body
274+
// split the file into headers (before two line breaks) and body
275275
$file = file_get_contents($path);
276276
$divide = mb_strpos($file, "\n\n");
277277
$headers = mb_substr($file, 0, $divide);

0 commit comments

Comments
 (0)