Skip to content

Commit a02e652

Browse files
committed
updated
1 parent fce2c12 commit a02e652

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2017-08-08-website-optimisations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Critical CSS is the subset of the overall CSS required for the webpage that help
2525
Javascript is the file that helps user in interacting with the webpage. But adding more and more javascript slows down the rendering of the webpage. There are ways to avoid javascripts acting as a render blocker :
2626

2727
* #### Async or Defer the scripts
28-
Async downloads the file during HTML parsing but will act as a render blocing to execute it when file is downloaded. Defer downloads the file during HTML parsing and will execute the file after the parsing is completed.
28+
Async downloads the file during HTML parsing but will act as a render blocking to execute it when file is downloaded. Defer downloads the file during HTML parsing and will execute the file after the parsing is completed.
2929
```
3030
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" type="text/javascript" defer="true"></script>
3131
```
@@ -61,7 +61,7 @@ When your application is strictly server side rendered then you really need to d
6161

6262
The more the size of the data, the more time it takes for the browser to render the page thereby effecting user's experience. Hence, lowering the amount of content will make the page render faster.
6363

64-
### Minified of Javascript and CSS
64+
### Minified form of Javascript and CSS
6565

6666
Add the javascript or css files in minified form which reduces the size of the files to be loaded.
6767
The lower the size of the file, the lesser time it takes to download the file for the webpage.

0 commit comments

Comments
 (0)