Merge pull request #5585 from BKinahan/fix/css-semicolon-consistency

Add two missing semi-colons to challenge seeds
pull/18182/head
Logan Tegman 2015-12-30 13:32:32 -08:00
commit 8069e3b9e0
1 changed files with 2 additions and 2 deletions

View File

@ -4183,7 +4183,7 @@
"challengeSeed": [
"<style>",
" body {",
" background-color: rgb(0, 0, 0)",
" background-color: rgb(0, 0, 0);",
" }",
"</style>"
],
@ -4224,7 +4224,7 @@
"challengeSeed": [
"<style>",
" body {",
" background-color: rgb(255, 255, 255)",
" background-color: rgb(255, 255, 255);",
" }",
"</style>"
],