From abcdc740b1a244b66afc9f66d32fbb0d93f684f1 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Mon, 24 Jun 2019 13:05:03 -0400 Subject: [PATCH] typo --- src/compiler/compile/nodes/Element.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compile/nodes/Element.ts b/src/compiler/compile/nodes/Element.ts index 3fcc453926..a3030f52a5 100644 --- a/src/compiler/compile/nodes/Element.ts +++ b/src/compiler/compile/nodes/Element.ts @@ -618,7 +618,7 @@ export default class Element extends Node { if (!contenteditable) { component.error(binding, { code: `missing-contenteditable-attribute`, - message: `'contenteditable' attribute is required for texContent and innerHTML two-way bindings` + message: `'contenteditable' attribute is required for textContent and innerHTML two-way bindings` }); } else if (contenteditable && !contenteditable.is_static) { component.error(contenteditable, {