branch: elpa/kotlin-mode
commit 42b7af81221e39fd46ddcbe6d1f49f6dd473a8df
Author: Remy Goldschmidt <[email protected]>
Commit: Remy Goldschmidt <[email protected]>
'data class' -> 'data'
---
kotlin-mode.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kotlin-mode.el b/kotlin-mode.el
index 710ea52d4f..09240a75ca 100644
--- a/kotlin-mode.el
+++ b/kotlin-mode.el
@@ -59,7 +59,7 @@
'("package" "import"))
(defconst kotlin-mode--type-decl-keywords
- '("data class" "class" "trait" "typealias" "enum"))
+ '("data" "class" "trait" "typealias" "enum"))
(defconst kotlin-mode--fun-decl-keywords
'("fun"))