Skip to content

Commit c4781ca

Browse files
authored
Merge pull request rmm5t#288 from oliverklee/bugfix/semicolons
[BUGFIX] Add missing semicolons
2 parents 734413e + 72680d8 commit c4781ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
abbr[title], time[title] { border-bottom: 1px dotted #333; }
3838
tt { font-size: 14px; }
3939
a { color: #06e; padding: 1px; }
40-
em { font-style: normal; background-color: #feb }
40+
em { font-style: normal; background-color: #feb; }
4141
a:hover { background-color: #06c; color: #fff; text-decoration: none; }
4242
#content { margin:0 auto; padding: 24px; width:700px; background-color:#fff; border: 1px solid #999; border-width: 0 1px 1px 1px; }
4343
#footer { margin:0 auto 24px; padding: 12px; width:700px; line-height: 24px; }

test/test_helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ function enableMockedDate(dateToReturn) {
170170
} else {
171171
throw "Mocking Date with this number of parameters is not implemented.";
172172
}
173-
}
173+
};
174174
}
175175

176176
function disableMockedDate() {

0 commit comments

Comments
 (0)