File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,16 @@ <h3 id="General_Style_Rules">2.1 General Style Rules</h3>
2525
2626< h4 id ="Protocol "> 2.1.1 Protocol</ h4 >
2727
28- < p > Use the HTTPS protocol for embedded resources where possible.</ p >
28+ < p > Use HTTPS for embedded resources where possible.</ p >
2929
30- < p > Always use the HTTPS protocol (< code > https:</ code > ) for images and other media
30+ < p > Always use HTTPS (< code > https:</ code > ) for images and other media
3131files, style sheets, and scripts, unless the respective files are not available
3232over HTTPS.</ p >
3333
3434< pre > < code class ="language-html prettyprint badcode "> <!-- Not recommended: omits the protocol -->
3535<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
3636
37- <!-- Not recommended: uses the HTTP protocol -->
37+ <!-- Not recommended: uses HTTP -->
3838<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
3939</ code > </ pre >
4040
@@ -45,7 +45,7 @@ <h4 id="Protocol">2.1.1 Protocol</h4>
4545< pre > < code class ="language-css prettyprint badcode "> /* Not recommended: omits the protocol */
4646@import '//fonts.googleapis.com/css?family=Open+Sans';
4747
48- /* Not recommended: uses the HTTP protocol */
48+ /* Not recommended: uses HTTP */
4949@import 'http://fonts.googleapis.com/css?family=Open+Sans';
5050</ code > </ pre >
5151
You can’t perform that action at this time.
0 commit comments