Skip to content

Commit 001f6ce

Browse files
[fix] switches statement to prevent github hiding it.
1 parent b81d96a commit 001f6ce

File tree

1 file changed

+2
-2
lines changed
  • manual/en-US/coding-standards/chapters

1 file changed

+2
-2
lines changed

manual/en-US/coding-standards/chapters/html.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ This prevents mixed content issues and results in minor file size savings.
1212

1313
```html
1414
<!-- Good -->
15-
<script src="//www.google.com/js/gweb/analytics/autotrack.js"></script>
15+
<link rel="stylesheet" href="//joomla.org/css/main.css">
1616
<!-- Bad -->
17-
<script src="http://www.google.com/js/gweb/analytics/autotrack.js"></script>
17+
<link rel="stylesheet" href="http://joomla.org/css/main.css">
1818
```
1919

2020
### Type attributes

0 commit comments

Comments
 (0)