Skip to content

Commit 91d6e36

Browse files
authored
Merge pull request google#439 from clingeric/patch-1
Removed RAS (redundant acronym syndrome) syndrome
2 parents 6271f3f + 967ca82 commit 91d6e36

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

htmlcssguide.html

Lines changed: 4 additions & 4 deletions
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)