We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b0dd0c commit 144a899Copy full SHA for 144a899
register.js
@@ -50,9 +50,9 @@ define([
50
*/
51
function createElement(tag) {
52
if (/-/.test(tag) && !(tag in registry)) {
53
- // Try to help people that have templates with custom elements but they forgot to do require="..."
+ // Try to help people that have templates with custom elements but they forgot to do requires="..."
54
console.warn("register.createElement(): undefined tag '" + tag +
55
- "', did you forget require='...' in your template?");
+ "', did you forget requires='...' in your template?");
56
}
57
58
var base = registry[tag] ? registry[tag].extends : null;
0 commit comments