aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Whitton2025-04-26 11:45:25 +0800
committerSean Whitton2025-04-26 11:46:18 +0800
commit94d8f5b94fb6fa281f5ea3bb8a8d945628f3a188 (patch)
tree84f09fcaa91a9758133c0267c60dbcf3320ef468
parent5a043bf3dfa42a6d9b8376687a2dc9e5fb71fe4a (diff)
downloademacs-94d8f5b94fb6fa281f5ea3bb8a8d945628f3a188.tar.gz
emacs-94d8f5b94fb6fa281f5ea3bb8a8d945628f3a188.zip
; typescript-ts-mode-multivar-indent-style: Use different example.
This prevents it becoming a hyperlink in *Help* buffers.
-rw-r--r--lisp/progmodes/typescript-ts-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/typescript-ts-mode.el b/lisp/progmodes/typescript-ts-mode.el
index 47d6aca3163..466a3de6d0f 100644
--- a/lisp/progmodes/typescript-ts-mode.el
+++ b/lisp/progmodes/typescript-ts-mode.el
@@ -68,14 +68,14 @@
68If the value is `align', align each declaration: 68If the value is `align', align each declaration:
69 69
70 const foo = \\='bar\\=', 70 const foo = \\='bar\\=',
71 car = \\='cdr\\=', 71 baz = \\='quux\\=',
72 stop = \\='start\\='; 72 stop = \\='start\\=';
73 73
74If the value is `indent', indent subsequent declarations by one indent 74If the value is `indent', indent subsequent declarations by one indent
75level: 75level:
76 76
77 const foo = \\='bar\\=', 77 const foo = \\='bar\\=',
78 car = \\='cdr\\=', 78 baz = \\='quux\\=',
79 stop = \\='start\\='; 79 stop = \\='start\\=';
80 80
81For changes to this variable to take effect, restart the major mode." 81For changes to this variable to take effect, restart the major mode."