branch: elpa/rust-mode
commit de813531231df26624c7d1a13768baceb0ad4510
Merge: 50e55e4 15d31a9
Author: Brian Anderson <[email protected]>
Commit: Brian Anderson <[email protected]>

    Merge pull request #3185 from megakorre/master
    
    Removed comma from rust-mode.el
---
 rust-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rust-mode.el b/rust-mode.el
index 6978685..328b9a8 100644
--- a/rust-mode.el
+++ b/rust-mode.el
@@ -53,8 +53,8 @@
 (defvar rust-value-keywords
   (let ((table (make-hash-table :test 'equal)))
     (dolist (word '("mod" "const" "class" "type"
-                                       "trait" "struct", "fn" "enum"
-                                       "impl"))
+                    "trait" "struct" "fn" "enum"
+                    "impl"))
       (puthash word 'def table))
     (dolist (word '("again" "assert"
                     "break"

Reply via email to