A tiny grammar correction

Will make the reader understand better what object will be stored in the cache.
This commit is contained in:
Ghost-017 2018-09-05 18:22:34 +08:00 committed by GitHub
parent dac2e71cff
commit 1fc3647cfc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -95,7 +95,7 @@ To attach several scripts, use multiple tags:
```smart ```smart
As a rule, only the simplest scripts are put into HTML. More complex ones reside in separate files. As a rule, only the simplest scripts are put into HTML. More complex ones reside in separate files.
The benefit of a separate file is that the browser will download it and then store in its [cache](https://en.wikipedia.org/wiki/Web_cache). The benefit of a separate file is that the browser will download it and then store it in its [cache](https://en.wikipedia.org/wiki/Web_cache).
After this, other pages that want the same script will take it from the cache instead of downloading it. So the file is actually downloaded only once. After this, other pages that want the same script will take it from the cache instead of downloading it. So the file is actually downloaded only once.