diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:30:13 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-11-11 10:32:53 -0800 |
commit | 6b4a97c1c78f39ce890d100acceceb652d14e20d (patch) | |
tree | 9d9f8347a952226adcd73680ed89c5679d6e5326 /lisp/cedet/semantic/wisent/javascript.el | |
parent | 269796288a43520a1dcc481337af472d086faaa4 (diff) | |
download | emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.gz emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.tar.bz2 emacs-6b4a97c1c78f39ce890d100acceceb652d14e20d.zip |
Fix some quoting glitches in doc strings
Diffstat (limited to 'lisp/cedet/semantic/wisent/javascript.el')
-rw-r--r-- | lisp/cedet/semantic/wisent/javascript.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/semantic/wisent/javascript.el b/lisp/cedet/semantic/wisent/javascript.el index 4c93c0dc4fa..e17dc68e1f6 100644 --- a/lisp/cedet/semantic/wisent/javascript.el +++ b/lisp/cedet/semantic/wisent/javascript.el @@ -88,8 +88,8 @@ is to return a symbol based on type modifiers." (define-mode-local-override semantic-analyze-scope-calculate-access js-mode (type scope) "Calculate the access class for TYPE as defined by the current SCOPE. Access is related to the :parents in SCOPE. If type is a member of SCOPE -then access would be 'private. If TYPE is inherited by a member of SCOPE, -the access would be 'protected. Otherwise, access is 'public." +then access would be `private'. If TYPE is inherited by a member of SCOPE, +the access would be `protected'. Otherwise, access is `public'." nil) (define-mode-local-override semantic-ctxt-current-symbol js-mode (&optional point) |