diff options
author | Eduardo Julian | 2021-06-30 23:24:55 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-06-30 23:24:55 -0400 |
commit | 744ee69630de59ca3ba660b0aab6361cd17ce1b4 (patch) | |
tree | 329c11b8c3522c319c99ebd4d7c51ee0e7464bae /lux-mode | |
parent | 6633cd42f2892ea71530ddeeb93a7e7c0b59faa3 (diff) |
"signature:" -> "interface:" & "structure:" -> "implementation:"
"signature" & "structure" feel like very ML-specific terminology and might not be easy on programmers unfamiliar with it.
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index 530a5be4e..7dc82baed 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -334,7 +334,7 @@ Called by `imenu--generic-function'." (type//capability (altRE "capability:")) ;; Data (data//record (altRE "get@" "set@" "update@")) - (data//signature (altRE "open:" "structure" "\\\\")) + (data//interface (altRE "open:" "implementation" "\\\\")) (data//implicit (altRE "implicit:" "\\\\\\\\")) (data//collection (altRE "list" "list&" "row" "tree")) ;; Code @@ -351,7 +351,7 @@ Called by `imenu--generic-function'." (remember (altRE "remember" "to_do" "fix_me")) (definition (altRE "\\.module:" "def:" "type:" "program:" - "signature:" "structure:" + "interface:" "implementation:" "macro:" "syntax:" "exception:" "word:" @@ -368,7 +368,7 @@ Called by `imenu--generic-function'." type//dynamic type//capability)) (data (altRE data//record - data//signature + data//interface data//implicit data//collection)) (code (altRE code//quotation |