emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/swift-mode 089853c 384/496: Fix typo "identifer" to "ident


From: ELPA Syncer
Subject: [nongnu] elpa/swift-mode 089853c 384/496: Fix typo "identifer" to "identifier"
Date: Sun, 29 Aug 2021 11:34:12 -0400 (EDT)

branch: elpa/swift-mode
commit 089853ca8555cf3fc7e179e85d768af67d93f51d
Author: taku0 <mxxouy6x3m_github@tatapa.org>
Commit: taku0 <mxxouy6x3m_github@tatapa.org>

    Fix typo "identifer" to "identifier"
---
 swift-mode-lexer.el | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/swift-mode-lexer.el b/swift-mode-lexer.el
index 7af36be..7a84537 100644
--- a/swift-mode-lexer.el
+++ b/swift-mode-lexer.el
@@ -900,7 +900,7 @@ This function does not return `implicit-;' or `type-:'."
       (swift-mode:fix-operator-type
        (swift-mode:token nil text start end))))
 
-   ;; Backquoted identifer
+   ;; Backquoted identifier
    ((eq (char-after) ?`)
     (let ((pos-after-comment (point)))
       (swift-mode:forward-string-chunk)
@@ -939,14 +939,14 @@ This function does not return `implicit-;' or `type-:'."
        pos-after-comment
        (point))))
 
-   ;; Other tokens including identifers, implicit parameters, keywords, and
+   ;; Other tokens including identifiers, implicit parameters, keywords, and
    ;; numbers
    (t
     (let*
         ((pos-after-comment (point))
          (text
           (cond
-           ;; Identifers, implicit parameters, keywords, numbers
+           ;; Identifiers, implicit parameters, keywords, numbers
            ;;
            ;; Note: syntax class _ includes #, @, and $.
            ((memq (char-syntax (char-after)) '(?w ?_))
@@ -973,7 +973,7 @@ This function does not return `implicit-;' or `type-:'."
                           (- (point) (length text))
                           (point)))
        (t
-        (swift-mode:token 'identifer
+        (swift-mode:token 'identifier
                           text
                           (- (point) (length text))
                           (point))))))))
@@ -1149,7 +1149,7 @@ This function does not return `implicit-;' or `type-:'."
         (swift-mode:fix-operator-type
          (swift-mode:token nil text start end)))))
 
-   ;; Backquoted identifer
+   ;; Backquoted identifier
    ((eq (char-before) ?`)
     (let ((pos-before-comment (point)))
       (swift-mode:backward-string-chunk)
@@ -1170,14 +1170,14 @@ This function does not return `implicit-;' or `type-:'."
        (point)
        pos-before-comment)))
 
-   ;; Other tokens including identifers, implicit parameters, keywords, and
+   ;; Other tokens including identifiers, implicit parameters, keywords, and
    ;; numbers
    (t
     (let*
         ((pos-before-comment (point))
          (text
           (cond
-           ;; Identifers, implicit parameters, keywords, numbers
+           ;; Identifiers, implicit parameters, keywords, numbers
            ;;
            ;; Note: syntax class _ includes #, @, and $.
            ((memq (char-syntax (char-before)) '(?w ?_))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]