diff --git a/src/v2/guide/components.md b/src/v2/guide/components.md
index 841eee6f98..c544bbfdaa 100644
--- a/src/v2/guide/components.md
+++ b/src/v2/guide/components.md
@@ -1155,25 +1155,25 @@ When using _string_ templates however, we're not bound by HTML's case-insensitiv
- kebab-case
- camelCase or kebab-case if the component has been defined using camelCase
-- kebab-case, camelCase or Title case if the component has been defined using TitleCase
+- kebab-case, camelCase or TitleCase if the component has been defined using TitleCase
``` js
components: {
- 'kebab-case-component': { /* ... */ },
- camelCaseComponent: { /* ... */ },
- TitleCaseComponent: { /* ... */ }
+ 'kebab-cased-component': { /* ... */ },
+ camelCasedComponent: { /* ... */ },
+ TitleCasedComponent: { /* ... */ }
}
```
``` html
-
+
-
-
+
+
-
-
-
+
+
+
```
This means that the TitleCase is the most universal _declaration convention_ and kebab-case is the most universal _usage convention_.