branch: elpa/lua-mode
commit d746b7e90ab45dee2881749951158686a929bfdc
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>

    Fix typos
---
 lua-mode.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lua-mode.el b/lua-mode.el
index 67de071..f5ca797 100644
--- a/lua-mode.el
+++ b/lua-mode.el
@@ -607,7 +607,7 @@ Groups 6-9 can be used in any of argument regexps."
     (,(lua-rx "::" ws lua-name ws "::")
       . font-lock-constant-face)
 
-    ;; Hightlights the name of the label in the "goto" statement like
+    ;; Highlights the name of the label in the "goto" statement like
     ;; "goto label"
     (,(lua-rx (symbol (seq "goto" ws+ (group-n 1 lua-name))))
       (1 font-lock-constant-face))
@@ -1018,8 +1018,8 @@ ignored, nil otherwise."
 Each token information entry is of the form:
   KEYWORD FORWARD-MATCH-REGEXP BACKWARDS-MATCH-REGEXP TOKEN-TYPE
 KEYWORD is the token.
-FORWARD-MATCH-REGEXP is a regexp that matches all possble tokens when going 
forward.
-BACKWARDS-MATCH-REGEXP is a regexp that matches all possble tokens when going 
backwards.
+FORWARD-MATCH-REGEXP is a regexp that matches all possible tokens when going 
forward.
+BACKWARDS-MATCH-REGEXP is a regexp that matches all possible tokens when going 
backwards.
 TOKEN-TYPE determines where the token occurs on a statement. open indicates 
that the token appears at start, close indicates that it appears at end, middle 
indicates that it is a middle type token, and middle-or-open indicates that it 
can appear both as a middle or an open type.")
 
 (defconst lua-indentation-modifier-regexp

Reply via email to