diff --git a/entries/prop.xml b/entries/prop.xml
index adccbc85..419c3cc2 100644
--- a/entries/prop.xml
+++ b/entries/prop.xml
@@ -86,7 +86,7 @@ $( "input" ).change(function() {
$( "p" ).html(
".attr( \"checked\" ): " + $input.attr( "checked" ) + "
" +
".prop( \"checked\" ): " + $input.prop( "checked" ) + "
" +
- ".is( \":checked\" ): " + $input.is( ":checked" ) ) + "";
+ ".is( \":checked\" ): " + $input.is( ":checked" ) + "" );
}).change();
]]>