Skip to content

Commit 967ca82

Browse files
authored
Removed RAS (redundant acronym syndrome) syndrome
References to HTTPS and HTTP were written as HTTPS protocol (Hypertext Transfer Protocol Secure protocol) and HTTP protocol (Hypertext Transfer Protocol protocol) which is redundant.
1 parent 6271f3f commit 967ca82

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

htmlcssguide.html

+4-4
Original file line numberDiff line numberDiff 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
3131
files, style sheets, and scripts, unless the respective files are not available
3232
over HTTPS.</p>
3333

3434
<pre><code class="language-html prettyprint badcode">&lt;!-- Not recommended: omits the protocol --&gt;
3535
&lt;script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"&gt;&lt;/script&gt;
3636

37-
&lt;!-- Not recommended: uses the HTTP protocol --&gt;
37+
&lt;!-- Not recommended: uses HTTP --&gt;
3838
&lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"&gt;&lt;/script&gt;
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

0 commit comments

Comments
 (0)