Skip to content

Commit

Permalink
Update occurances.hbs
Browse files Browse the repository at this point in the history
  • Loading branch information
ratherblue committed May 23, 2016
1 parent 332a05e commit 97db9ce
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/templates/partials/occurances.hbs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<h2>Most-Common Errors and Warnings</h2>

<div class="table-wrapper occurances">
<div class="table-wrapper occurrences">
<div class="table-column">
<h3>Errors</h3>

{{#if errorOccurances.length}}
{{#if errorOccurrences.length}}
<table class="summary-table">
<tbody>
{{#each errorOccurances}}
<tr class="occurance row-{{@index}}">
{{#each errorOccurrences}}
<tr class="occurrence row-{{@index}}">
{{#if ruleUrl}}
<td><a href="{{ruleUrl}}">{{name}}</a></td>
{{^}}
Expand All @@ -26,11 +26,11 @@
<div class="table-column">
<h3>Warnings</h3>

{{#if warningOccurances.length}}
{{#if warningOccurrences.length}}
<table class="summary-table">
<tbody>
{{#each warningOccurances}}
<tr class="occurance row-{{@index}}">
{{#each warningOccurrences}}
<tr class="occurrence row-{{@index}}">
{{#if ruleUrl}}
<td><a href="{{ruleUrl}}">{{name}}</a></td>
{{^}}
Expand Down

0 comments on commit 97db9ce

Please sign in to comment.