diff --git a/src/validate/html/validateElement.js b/src/validate/html/validateElement.js
index beca2086ec..cda56ec730 100644
--- a/src/validate/html/validateElement.js
+++ b/src/validate/html/validateElement.js
@@ -25,7 +25,7 @@ export default function validateElement ( validator, node ) {
}
if ( getType( validator, node ) !== 'checkbox' ) {
- validator.error( `'checked' binding can only be used with ` );
+ validator.error( `'checked' binding can only be used with `, attribute.start );
}
}
@@ -99,4 +99,4 @@ function getType ( validator, node ) {
function list ( items, conjunction = 'or' ) {
if ( items.length === 1 ) return items[0];
return `${items.slice( 0, -1 ).join( ', ' )} ${conjunction} ${items[ items.length - 1 ]}`;
-}
\ No newline at end of file
+}